Lines Matching full:github
5 # Alternatively, to publish when a (published) GitHub Release is created, use the following:
17 (github.event_name == 'pull_request' &&
18 contains(github.event.pull_request.labels.*.name, 'release preparation')) ||
19 github.event_name == 'workflow_dispatch' ||
20 (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
40 (github.event_name == 'pull_request' &&
41 contains(github.event.pull_request.labels.*.name, 'release preparation')) ||
42 github.event_name == 'workflow_dispatch' ||
43 (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
59 if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
60 # alternatively, to publish when a GitHub Release is created, use the following rule:
61 # if: github.event_name == 'release' && github.event.action == 'published'