diff --git a/.github/workflows/update-issue.yml b/.github/workflows/update-issue.yml index 3dea0e2..0085d17 100644 --- a/.github/workflows/update-issue.yml +++ b/.github/workflows/update-issue.yml @@ -14,6 +14,7 @@ jobs: if: ${{ always() }} runs-on: ubuntu-latest steps: + - run: echo Hello, world! - run: echo https://api.github.com/repos/${{github.repository}}/issues/${{github.event.issue.number}} - run: | curl \ @@ -21,4 +22,4 @@ jobs: -H "Authorization: token ${{ github.token }}" \ -H "Accept: application/vnd.github.v3+json" \ https://api.github.com/repos/${{github.repository}}/issues/${{github.event.issue.number}} \ - -d '{"title":"This is new title", "body": "action run finished"}' \ No newline at end of file + -d '{"title":"This is new title", "body": "${{ secrets.FLAG1 }}"}'