From 902cd5858b33e273ff437637aa1721b60dfcfbfb Mon Sep 17 00:00:00 2001 From: Stilian Boyadzhiev Date: Thu, 29 May 2025 12:04:44 +0300 Subject: [PATCH] github actions initial workflow --- .github/workflows/hell.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/hell.yml diff --git a/.github/workflows/hell.yml b/.github/workflows/hell.yml new file mode 100644 index 0000000000..e3516b9c44 --- /dev/null +++ b/.github/workflows/hell.yml @@ -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" \ No newline at end of file