File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 4141 # if dependabot and checks ran
4242 # if: (github.event_name != 'check_suite' || github.event.check_suite.conclusion == 'success')
4343 # qqqq put back in later if: (github.actor == 'dependabot[bot]' || github.event_name == 'workflow_dispatch')&& (github.event_name != 'check_suite' || github.event.check_suite.conclusion == 'success')
44- if : github.event.check_suite.conclusion == 'success' && github.actor == 'dependabot[bot]' && github.event.check_suite.pull_requests[0].base.ref == 'Automatic_version_update_dependabot'
44+
45+
46+ # qqqq add in after testing && github.actor == 'dependabot[bot]'
47+ if : github.event.check_suite.conclusion == 'success' && github.event.check_suite.pull_requests[0].base.ref == 'Automatic_version_update_dependabot'
4548 steps :
4649 - name : Checkout the repository
4750 uses : actions/checkout@v3
5760 run : |
5861 pr_title="${{ github.event.pull_request.title }}"
5962 if [[ $pr_title == *"(major)"* ]]; then
60- echo "update_type=major" >> $github_output
63+ echo "update_type=major" >> $GITHUB_OUTPUT
6164 else
62- echo "update_type=minor_or_patch" >> $github_output
65+ echo "update_type=minor_or_patch" >> $GITHUB_OUTPUT
6366 fi
6467
6568 - name : auto-merge minor and patch updates
You can’t perform that action at this time.
0 commit comments