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 fa0fe56 commit db991a0Copy full SHA for db991a0
.github/workflows/publish.yml
@@ -1,15 +1,15 @@
1
name: Publish
2
3
on:
4
- push:
+ workflow_run:
5
+ workflows: [CI]
6
+ types: [completed]
7
branches:
8
- main
- paths-ignore:
- - '**/*.md'
9
10
jobs:
11
bump-version:
12
- if: github.repository_owner == 'mackenly' && needs.lint.result == 'success' && needs.test.result == 'success'
+ if: github.repository_owner == 'mackenly' && github.event.workflow_run.conclusion == 'success'
13
runs-on: ubuntu-latest
14
timeout-minutes: 10
15
permissions:
0 commit comments