diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index aa64dc83..b7b2f440 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -22,14 +22,26 @@ jobs: run: npm ci - name: Run tests run: npm run test - - name: Get lastUpdated from package.json - id: lastUpdated - run: echo "lastUpdated=$(cat package.json | jq .lastUpdated)" >> $GITHUB_OUTPUT + + release-comment: + name: Release Comment + runs-on: ubuntu-latest + # if: ${{github.}} TODO: Add condition to only run on PRs that contain release in the title + steps: + # - name: Get lastUpdated from package.json + # id: lastUpdated + # run: echo "lastUpdated=$(cat package.json | jq .lastUpdated)" >> $GITHUB_OUTPUT + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" - name: Comment uses: mikedloss/create-update-comment@v1 + # env: + # lastUpdated: ${{cat package.json | jq .lastUpdated}} with: token: ${{ secrets.GITHUB_TOKEN }} unique-identifier: "lastUpdated comment" message: | - ## PR is ready to merge. - Last updated: ${{steps.lastUpdated.outputs.lastUpdated}} + ### PR is ready to merge. + Last updated: $(cat package.json | jq .lastUpdated)