mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
github actions initial workflow
This commit is contained in:
parent
3f7b8bc976
commit
902cd5858b
1 changed files with 17 additions and 0 deletions
17
.github/workflows/hell.yml
vendored
Normal file
17
.github/workflows/hell.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Triggers on merge with specified lable
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- closed
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
run-if-merged-and-has-label:
|
||||
if: |
|
||||
github.event.pull_request.merged == true &&
|
||||
contains(github.event.pull_request.labels.*.name, 'CI:Build')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Do something
|
||||
run: echo "PR was merged and has label CI:Build"
|
||||
Loading…
Reference in a new issue