Skip to content

Commit 362bec9

Browse files
authored
Merge pull request #238 from TechnologyEnhancedLearning/ci-dependabot-setup
chore(dep): remove check for now
2 parents f6c755a + 942f2ed commit 362bec9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/automerge-dependabot-prs-into-collected-branch.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ jobs:
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
@@ -57,9 +60,9 @@ jobs:
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

0 commit comments

Comments
 (0)