diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index d90de4d..196350e 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -8,16 +8,20 @@ jobs: deploy: needs: build + permissions: + actions: read runs-on: ubuntu-latest steps: - name: Call data run: echo "Result is $RESULT" env: RESULT: ${{ needs.build.outputs.result }} + - run: This run id is ${{ github.run_id }} - name: Download artifact uses: actions/download-artifact@v4 with: name: example path: result run-id: ${{ needs.build.outputs.run }} + github-token: ${{ github.secret }} - run: ls -la ./result