Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsk committed May 16, 2022
1 parent 05329e3 commit 16708a1
Show file tree
Hide file tree
Showing 3 changed files with 1,364 additions and 4 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 16708a1

Please sign in to comment.