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 f2a1136 commit cda0c06Copy full SHA for cda0c06
.github/workflows/release.yml
@@ -1,12 +1,16 @@
1
name: Release
2
-on: [push, pull_request]
+on:
3
+ push:
4
+ tags-ignore:
5
+ - "**"
6
+ pull_request:
7
8
9
10
jobs:
11
test:
12
name: Test Job
- # Support [skip ci] out of box with github actions Workaround
- # Only works for push https://github.com/actions/runner/issues/774
- if: github.event_name == 'pull_request' || (github.event_name == 'push' && contains(toJson(github.event.commits), '[skip ci]') == false)
13
+ if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.actor != 'dependabot[bot]')
14
runs-on: ubuntu-latest
15
steps:
16
- name: Checkout
0 commit comments