Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogyuchi committed Mar 14, 2023
1 parent 8f4ed74 commit 3db0b11
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/do-not-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- opened
- labeled
- unlabeled
workflow_call:

permissions:
pull-requests: read
Expand Down
22 changes: 17 additions & 5 deletions .github/workflows/fallback-pr-create.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
name: Fallback pr create
on:
pull_request:
issue_comment:
pull_request_review:
pull_request_review_comment:

jobs:
approved:
name: '!!!'
if: ${{ !github.event.issue || github.event.issue.pull_request }}
get-statusCheckRollup:
runs-on: ubuntu-22.04
outputs:
status: ${{ steps.step1.outputs.status }}
steps:
- run: "true"
- id: set-statusCheckRollup
run: echo "status=${{ toJSON(${gh pr view 215 --json statusCheckRollup -q '.statusCheckRollup[].name'}) }}" >> "$GITHUB_OUTPUT"
pr:
name: 'pr'
needs: get-statusCheckRollup
runs-on: ubuntu-22.04
steps:
- name: check_do-not-merge
run: |
echo "${{ needs.get-statusCheckRollup }}"
if ${{ !contains(fromJSON(needs.get-statusCheckRollup), '') }}; then
true
- name: do-not-merge
uses: ./github/workflows/do-not-merge.yml

0 comments on commit 3db0b11

Please sign in to comment.