Skip to content

Commit

Permalink
hotfix: action 이 환경변수 읽지 못하는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
punchdrunkard committed Aug 17, 2024
1 parent 443599a commit d58579e
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
name: 'PR CI'

on:
pull_request:
branches: [ "main" ]
pull_request_target:
types: [labeled]

permissions: write-all
permissions:
contents: read

jobs:
build:
if: contains(github.event.pull_request.labels.*.name, 'safe to test')
runs-on: ubuntu-latest
permissions:
pull-requests: write

steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -33,7 +38,9 @@ jobs:
run: chmod +x gradlew

- name: Test with Gradle
run: ./gradlew --info test
run: |
./gradlew copySecret
./gradlew --info test
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
Expand Down

0 comments on commit d58579e

Please sign in to comment.