Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dlutermade committed Sep 17, 2023
1 parent 1f6ee39 commit 0571e67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@ on:

jobs:
check_lint:
if: false
uses: ./.github/workflows/checkLint.yml
secrets: inherit

check_type:
if: false
uses: ./.github/workflows/checkType.yml
secrets: inherit

unit_test:
if: false
uses: ./.github/workflows/unitTest.yml
secrets: inherit

ready_to_review:
needs: [check_lint, check_type, unit_test]
uses: ./.github/workflows/readyToReview.yml
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/readyToReview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Output CONTENT
id: CONTENT
run: |
echo "content=[{\"title\": \"${{ steps.PR.outputs.pr_title }}\", \"url\": \"${{ steps.PR.outputs.pr_url }}\", \"description\": \"## Ready to review PR\",\"fields\": [{\"name\": \"Owner\", \"value\": \"${{fromJSON(steps.PR.outputs.PR).user.login}}\"}], \"footer\": {\"text\": \"created at ${{steps.PR.outputs.pr_created_at }}\"}}]" >> $GITHUB_OUTPUT
echo "content=[{\"title\": \"${{ steps.PR.outputs.pr_title }}\", \"url\": \"${{ steps.PR.outputs.pr_url }}\", \"description\": \"## Ready to review PR\",\"fields\": [{\"name\": \"Owner\", \"value\": \"${{fromJSON(steps.PR.outputs.PR).user.login}}\"}, {\"name\": \"Status\", \"value\": \"${{github.action_status}}\"}], \"footer\": {\"text\": \"created at ${{steps.PR.outputs.pr_created_at }}\"}}]" >> $GITHUB_OUTPUT
- name: Can Review PR
env:
Expand Down

0 comments on commit 0571e67

Please sign in to comment.