Releases: guardian/actions-riff-raff
Releases · guardian/actions-riff-raff
v3.3.1
What's Changed
- fix: Use commit sha to identify PR number by @akash1810 in #94
Full Changelog: v3.3.0...v3.3.1
v3.3.0
What's Changed
- chore(deps): bump @aws-sdk/client-s3 from 3.441.0 to 3.462.0 by @dependabot in #92
- chore(deps): bump esbuild from 0.19.5 to 0.19.8 by @dependabot in #91
- chore(deps-dev): bump @types/node from 20.8.10 to 20.10.1 by @dependabot in #90
- chore(deps-dev): bump @types/js-yaml from 4.0.8 to 4.0.9 by @dependabot in #89
- feat: Add a link to understand what's currently deployed by @akash1810 in #93
Full Changelog: v3.2.0...v3.3.0
v3.2.0
What's Changed
- feat: Support repositories with multiple Riff-Raff projects by @akash1810 in #88
Full Changelog: v3.1.1...v3.2.0
v3.1.1
What's Changed
- Provide more context to GitHub topic failure by @akash1810 in #87
Full Changelog: v3.1.0...v3.1.1
3.1.0 (21-11-2023)
What's Changed
- Block deploys of repos without appropriate topics by @NovemberTang in #86
Full Changelog: v3...v3.1.0
v3.0.0
3.0.0 (2023-11-20)
- Add a pull request comment with quick links to deploy with Riff-Raff (#85)
BREAKING CHANGES
A new required input githubToken
has been added. This needs to be scoped with pull-requests: write
permission.
Before (v2)
jobs:
CI:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: guardian/actions-riff-raff@v2
with:
projectName: playground::my-application
configPath: riff-raff.yaml
contentDirectories: |
static-site-assets:
- static-site/dist
api:
- target/application.jar
After (v3)
jobs:
CI:
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
pull-requests: write # <- NEW!
steps:
- uses: guardian/actions-riff-raff@v3 # Note the version change
with:
githubToken: ${{ secrets.GITHUB_TOKEN }} # <- NEW!
projectName: playground::my-application
configPath: riff-raff.yaml
contentDirectories: |
static-site-assets:
- static-site/dist
api:
- target/application.jar
Note that GITHUB_TOKEN
is provided by GitHub. See https://docs.github.com/en/actions/security-guides/automatic-token-authentication.
v2.2.4
v2.2.3
What's Changed
- Bump @aws-sdk/client-s3 from 3.363.0 to 3.379.1 by @dependabot in #65
- Bump @guardian/prettier from 4.0.0 to 5.0.0 by @dependabot in #64
- Bump esbuild from 0.18.11 to 0.18.17 by @dependabot in #63
- Bump @types/node from 18.17.0 to 20.4.6 by @dependabot in #66
- Bump @types/node from 20.4.6 to 20.5.7 by @dependabot in #70
- Bump esbuild from 0.18.17 to 0.19.2 by @dependabot in #69
- Bump @aws-sdk/client-s3 from 3.379.1 to 3.405.0 by @dependabot in #71
- Bump @types/js-yaml from 4.0.5 to 4.0.6 by @dependabot in #76
- Bump esbuild from 0.19.2 to 0.19.4 by @dependabot in #74
- Bump @types/node from 20.5.7 to 20.8.0 by @dependabot in #73
- Bump @aws-sdk/client-s3 from 3.405.0 to 3.421.0 by @dependabot in #72
- Update artifact following dependency updates by @akash1810 in #77
Full Changelog: v2.2.2...v2.2.3