Skip to content

Commit

Permalink
build(deps): bump @actions/github from 5.0.1 to 5.0.3 (#470)
Browse files Browse the repository at this point in the history
Co-authored-by: Kamil Samigullin <kamil@samigullin.info>
  • Loading branch information
dependabot[bot] and kamilsk committed May 16, 2022
1 parent 537aa19 commit 6aefae2
Show file tree
Hide file tree
Showing 5 changed files with 1,392 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -15,9 +15,9 @@ jobs:
npm install
npm run all
# 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)
- name: Update dist files
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'))
run: |
if [[ -z $(git status -s) ]]
then
Expand Down

0 comments on commit 6aefae2

Please sign in to comment.