mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
18 lines
No EOL
351 B
YAML
18 lines
No EOL
351 B
YAML
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" |