We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a7ec08 commit 97a0abeCopy full SHA for 97a0abe
.github/workflows/build.yaml
@@ -85,12 +85,9 @@ jobs:
85
name: check publish
86
87
runs-on: ubuntu-latest
88
- env:
89
- IS_ME: ${{ github.actor == 'hauner' }}
90
- IS_DEPENDABOT: ${{ github.actor == 'dependabot[bot]' }}
91
- IS_SNAPSHOT: ${{ contains(needs.version.outputs.BUILD_VERSION, 'SNAPSHOT') }}
92
-
93
- if: IS_ME && IS_SNAPSHOT && !IS_DEPENDABOT
+ if: >-
+ github.actor != 'dependabot[bot]' &&
+ github.actor == 'hauner' && contains(needs.version.outputs.BUILD_VERSION, 'SNAPSHOT')
94
95
steps:
96
- run: echo "should publish ..."
0 commit comments