Skip to content

Commit

Permalink
Use full SHA format when referencing specific commit version in uses (
Browse files Browse the repository at this point in the history
#470)

The shortcut SHA versions are not supported.
  • Loading branch information
jagodarybacka authored Oct 23, 2023
2 parents f1d7e89 + 7753c95 commit bc62ad7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update-environments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
uses: actions/checkout@v3
- name: Open/update a PR from `main` to `stage-live`
id: pr
uses: tretuna/sync-branches@ea58ab6 # 1.4.0
uses: tretuna/sync-branches@ea58ab6e406fd3ad016a064b31270bbb41127f41 # 1.4.0
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "main"
TO_BRANCH: "stage-live"
PULL_REQUEST_TITLE: "🪄 [QA] Update stage environments"
PULL_REQUEST_BODY: "This is a pull request that upon merging will update stage environments with recent `main` changes."
REVIEWERS: '["andreachapman"]'
- uses: studroid/label-pr-or-issue-action@ff48a93 # v1.0.1
- uses: studroid/label-pr-or-issue-action@ff48a93f6e1a8d8a6befdae900f54da173b17215 # v1.0.1
with:
pr-or-issue-number: ${{ steps.pr.outputs.PULL_REQUEST_NUMBER }}
label: "⚙️ deployment"
Expand All @@ -52,15 +52,15 @@ jobs:
uses: actions/checkout@v3
- name: Open/update a PR from `main` to `stage-live`
id: pr
uses: tretuna/sync-branches@ea58ab6 # 1.4.0
uses: tretuna/sync-branches@ea58ab6e406fd3ad016a064b31270bbb41127f41 # 1.4.0
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "stage-live"
TO_BRANCH: "release"
PULL_REQUEST_TITLE: "🚀 [QA] Update release environment"
PULL_REQUEST_BODY: "This is a pull request that upon merging will update production environment with recent `stage-live` changes."
REVIEWERS: '["andreachapman"]'
- uses: studroid/label-pr-or-issue-action@ff48a93 # v1.0.1
- uses: studroid/label-pr-or-issue-action@ff48a93f6e1a8d8a6befdae900f54da173b17215 # v1.0.1
with:
pr-or-issue-number: ${{ steps.pr.outputs.PULL_REQUEST_NUMBER }}
label: "⚙️ deployment"

0 comments on commit bc62ad7

Please sign in to comment.