Skip to content

Commit

Permalink
fix: capture bot PRs when reopened (#48)
Browse files Browse the repository at this point in the history
* fix: capture bot PRs when reopened

* fix: simplify
  • Loading branch information
gordsport authored Jun 7, 2022
1 parent 0d3577c commit 70ff514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/project_board_automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: 'Check if PR raised by bot'
id: bot-pr
if: ${{ github.actor == 'dependabot[bot]' }}
if: startsWith(github.head_ref, 'dependabot/') == true
uses: actions/github-script@v6.1.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
Expand Down

0 comments on commit 70ff514

Please sign in to comment.