Skip to content

Commit

Permalink
Employed labels for dispatching.
Browse files Browse the repository at this point in the history
  • Loading branch information
grigorye committed Jun 26, 2023
1 parent 893ddfd commit 751e9e0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 21 deletions.
35 changes: 14 additions & 21 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ on:
branches: [main]

pull_request:
types: [opened, synchronize, reopened, ready_for_review]

issue_comment:
types: [created, edited, deleted]
types: [opened, synchronize, reopened, ready_for_review, labeled]

defaults:
run:
Expand All @@ -32,32 +29,28 @@ jobs:
name: 'Paths Filter'
uses: ./.github/workflows/paths-filter.yml

comments-filter:
name: 'Comments Filter'
labels-filter:
name: 'Labels Filter'
runs-on: ubuntu-latest
outputs:
should-test: ${{ steps.filter.outputs.should-test }}
should-build: ${{ steps.filter.outputs.should-build }}

steps:
- name: 'Filter comments'
- name: 'Filter labels'
id: filter
if: ${{ github.event_name == 'pull_request' && github.event.action == 'labeled' }}
run: |
echo "should-test=false" >> $GITHUB_OUTPUT
echo "should-build=false" >> $GITHUB_OUTPUT
if [[ "${{ github.event_name }}" == 'issue_comment' ]]; then
if [[ "${{ github.event.comment.body }}" =~ '@ci test this please' ]]; then
echo "should-test=true" >> $GITHUB_OUTPUT
fi
if [[ "${{ github.event.comment.body }}" =~ '@ci build this please' ]]; then
echo "should-build=true" >> $GITHUB_OUTPUT
fi
if [[ "${{ github.event.label.name }}" =~ 'ci: test' ]]; then
echo "should-test=true" >> $GITHUB_OUTPUT
fi
if [[ "${{ github.event.label.name }}" =~ 'ci: build' ]]; then
echo "should-build=true" >> $GITHUB_OUTPUT
fi
tests:
name: 'Tests'
needs: [paths-filter, comments-filter]
if: ${{ !inputs.skip-tests && github.event.pull_request.draft != true && needs.paths-filter.outputs.should-test != 'false' && needs.comments-filter.outputs.should-test == 'true' }}
needs: [paths-filter, labels-filter]
if: ${{ !inputs.skip-tests && github.event.pull_request.draft != true && needs.paths-filter.outputs.should-test != 'false' && needs.labels-filter.outputs.should-test == 'true' }}
uses: grigorye/ReusableWorkflows/.github/workflows/tests-generic.yml@v20
secrets: inherit
with:
Expand All @@ -68,8 +61,8 @@ jobs:

build-app:
name: 'App'
needs: [paths-filter, comments-filter]
if: ${{ !inputs.skip-build-app && github.event.pull_request.draft != true && needs.paths-filter.outputs.should-build != 'false' && needs.comments-filter.outputs.should-build == 'true' }}
needs: [paths-filter, labels-filter]
if: ${{ !inputs.skip-build-app && github.event.pull_request.draft != true && needs.paths-filter.outputs.should-build != 'false' && needs.labels-filter.outputs.should-build == 'true' }}
uses: grigorye/ReusableWorkflows/.github/workflows/build-app-generic.yml@v20
with:
macos-app-scheme: 'TMBuddy'
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/on-pr-comment-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: main

on:
issue_comment:
types: [created, edited, deleted]

defaults:
run:
shell: bash --noprofile --norc -x -euo pipefail {0}

jobs:
comments-filter:
name: 'Comments filter'
runs-on: ubuntu-latest
permissions:
pull-requests: write
issues: write
steps:
- name: 'Filter comments'
if: ${{ github.event_name == 'issue_comment' }}
run: |
if [[ "${{ github.event.comment.body }}" =~ '@ci test this please' ]]; then
gh pr edit "$PR" --add-label 'ci: test' -R ${{ github.repository }}
fi
if [[ "${{ github.event.comment.body }}" =~ '@ci build this please' ]]; then
gh pr edit "$PR" --add-label 'ci: build' -R ${{ github.repository }}
fi
env:
PR: ${{ github.event.issue.number }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 751e9e0

Please sign in to comment.