Skip to content

v0.0.3

Latest

Choose a tag to compare

@akash1810 akash1810 released this 18 Aug 14:40
Immutable release. Only release title and notes can be modified.
0a88f25

What's Changed

This change introduces PR comments and requires the pull-requests: write permission as a result.

Before

permissions:
  contents: read
  id-token: write
steps:
  - name: Publish Image
    uses: guardian/actions-publish-image@v0.0.2
    id: publish-image
    with:
      roleArn: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}
      branchName: ${{ needs.facts.outputs.branchName }}
      buildNumber: ${{ needs.facts.outputs.buildNumber }}
      commitSha: ${{ needs.facts.outputs.commitSha }}

After

permissions:
  contents: read
  id-token: write
  pull-requests: write # <-- NEW
steps:
  - name: Publish Image
    uses: guardian/actions-publish-image@v0.0.3 # <-- NEW
    id: publish-image
    with:
      roleArn: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}
      branchName: ${{ needs.facts.outputs.branchName }}
      buildNumber: ${{ needs.facts.outputs.buildNumber }}
      commitSha: ${{ needs.facts.outputs.commitSha }}
      githubToken: ${{ secrets.GITHUB_TOKEN }} # <-- NEW
  • chore(deps): Bump aws-actions/configure-aws-credentials from 6.2.0 to 6.2.1 by @dependabot[bot] in #5
  • feat: Add PR comment by @akash1810 in #7
  • chore(deps): Bump aws-actions/configure-aws-credentials from 6.2.1 to 6.2.3 by @dependabot[bot] in #8
  • chore(deps): Bump actions/checkout from 7.0.0 to 7.0.1 by @dependabot[bot] in #10
  • chore(deps): Bump @types/node from 24.1.0 to 26.2.0 by @dependabot[bot] in #9

Full Changelog: v0.0.2...v0.0.3