We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05329e3 commit c8e3f81Copy full SHA for c8e3f81
.github/workflows/test.yml
@@ -15,9 +15,9 @@ jobs:
15
npm install
16
npm run all
17
18
- # Update dist files if there is label dependencies
+ # Update dist files if there is label dependencies or pull request' author is dependabot[bot] (id = 49699333)
19
- name: Update dist files
20
- if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'dependencies')
+ if: github.event_name == 'pull_request' && (github.event.pull_request.user.id == 49699333 || contains(github.event.pull_request.labels.*.name, 'dependencies'))
21
run: |
22
if [[ -z $(git status -s) ]]
23
then
0 commit comments