Skip to content

Commit

Permalink
fixup! Merge pull request RIOT-OS#18705 from Einhornhool/pr/pkg-crypt…
Browse files Browse the repository at this point in the history
…oauth-bugfix
  • Loading branch information
miri64 committed Oct 8, 2022
1 parent 9fe5363 commit f394fd2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ name: release-tests
# dispatch.

on:
issue_comment:
pull_request_review:
types:
- created
- submitted
schedule:
- cron: '0 3 * * 6'
push:
Expand Down Expand Up @@ -48,7 +48,7 @@ env:
jobs:
tasks:
runs-on: ubuntu-latest
if: ${{ !github.event.comment || (github.event.issue.pull_request && contains(github.event.comment.body, '@riot-ci do release tests'))}}
if: ${{ !github.event.review || (contains(github.event.review.body, '@riot-ci do release tests'))}}
timeout-minutes: 360
strategy:
fail-fast: false
Expand Down Expand Up @@ -137,9 +137,9 @@ jobs:
if [ -n "${{ github.event.inputs.filter }}" ]; then
K="-k"
FILTER="${{ github.event.inputs.filter }}"
elif echo '${{ github.event.comment.body }}' | grep -i '@riot-ci do release tests with "[^"]\+"'; then
elif echo '${{ github.event.review.body }}' | grep -i '@riot-ci do release tests with "[^"]\+"'; then
K="-k"
FILTER="$(echo '${{ github.event.comment.body }}' | sed 's/.*@riot-ci do release tests with "\([^"]\+\)".*/\1/i')"
FILTER="$(echo '${{ github.event.review.body }}' | sed 's/.*@riot-ci do release tests with "\([^"]\+\)".*/\1/i')"
fi
cd Release-Specs
Expand Down

0 comments on commit f394fd2

Please sign in to comment.