mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
Initial Workflow test
This commit is contained in:
parent
3cc0e7a31a
commit
b7ade1c787
1 changed files with 18 additions and 0 deletions
18
.github/workflows/task.yaml
vendored
Normal file
18
.github/workflows/task.yaml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
name: DEV-CI-CD
|
||||||
|
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [ closed ]
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'CI:Build')
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: echo label
|
||||||
|
run: echo "PR with label 'CI:Build' was merged"
|
||||||
Loading…
Reference in a new issue