Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 0 additions & 92 deletions .github/actions/create-pr/action.yml

This file was deleted.

148 changes: 0 additions & 148 deletions .github/actions/create-pr/create_pr_for_staged_changes.sh

This file was deleted.

7 changes: 4 additions & 3 deletions .github/workflows/make-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
- name: Setup dependencies
uses: aws-powertools/actions/.github/actions/cached-node-modules@b8e12f37991bb03672113b65cae09d52d494bbef # v1.0.0
uses: aws-powertools/actions/.github/actions/cached-node-modules@5ae7c190d6b51491bb14f593c3509c1bcbf7a3c1 # v1.1.0
with:
node-version: ${{ env.NODE_VERSION }}
build: "false"
- name: Version and changelog
id: version-n-changelog
uses: aws-powertools/actions/.github/actions/version-n-changelog@b8e12f37991bb03672113b65cae09d52d494bbef # v1.0.0
uses: aws-powertools/actions/.github/actions/version-n-changelog@5ae7c190d6b51491bb14f593c3509c1bcbf7a3c1 # v1.1.0
with:
release-type: ${{ github.event.inputs.release-type }}
- name: Update user agent version
Expand All @@ -50,7 +51,7 @@ jobs:
run: git add .
- name: Create PR
id: create-pr
uses: ./.github/actions/create-pr
uses: aws-powertools/actions/.github/actions/create-pr@5ae7c190d6b51491bb14f593c3509c1bcbf7a3c1 # v1.1.0
with:
temp_branch_prefix: "ci-bump"
pull_request_title: "chore(ci): bump version to ${{ steps.version-n-changelog.outputs.new-version }}"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish_layer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,12 @@ jobs:
- name: Replace layer versions in documentation
run: |
./.github/scripts/update_layer_arn.sh ${{ inputs.layer_documentation_version }}
- name: Stage changes
run: git add .
- name: Create PR
id: create-pr
uses: ./.github/actions/create-pr
uses: aws-powertools/actions/.github/actions/create-pr@5ae7c190d6b51491bb14f593c3509c1bcbf7a3c1 # v1.1.0
with:
files: 'docs/getting-started/lambda-layers.md'
temp_branch_prefix: 'ci-layer-docs'
pull_request_title: 'chore(ci): update layer ARN on documentation'
github_token: ${{ secrets.GITHUB_TOKEN }}
Loading