Skip to content

Commit

Permalink
implement clearer tagging system
Browse files Browse the repository at this point in the history
Signed-off-by: greg pereira <[email protected]>
  • Loading branch information
Gregory-Pereira committed Nov 12, 2024
1 parent 4f22481 commit 424353f
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
File renamed without changes.
66 changes: 66 additions & 0 deletions .github/workflows/release-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# name: Deploy To Prodcution
# on:
# release:
# types: [released]

name: test-wf
on:
pull_request:
branches:
- main
env:
GHCR_REGISTRY: ghcr.io
GHCR_UI_IMAGE_NAME: ${{ github.repository }}/ui
QUAY_REGISTRY: quay.io
QUAY_UI_IMAGE_NAME: instructlab-ui/ui
GHCR_PATHSERVICE_IMAGE_NAME: ${{ github.repository }}/pathservice
QUAY_PATHSERVICE_IMAGE_NAME: instructlab-ui/pathservice

jobs:
check_most_recent_pr_number:
runs-on: ubuntu-latest
steps:
- name: Get Pull Request Number from Commit
id: get_pr_number
uses: actions/github-script@v6
with:
script: |
console.log("Repository owner:", context.repo.owner);
console.log("Repository name:", context.repo.repo);
console.log("Current commit SHA:", context.sha);
const commits = await github.rest.repos.listCommits({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
per_page: 1
});
const commitSha = commits.data[0].sha;
console.log("Fetched commit SHA:", commitSha);
const prs = await github.rest.pulls.list({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'closed',
sort: 'updated',
direction: 'desc'
});
console.log("Number of closed PRs fetched:", prs.data.length);
console.log("Most recent PR:", prs.data[0]);
const pr = prs.data.find(pr => pr.merge_commit_sha === commitSha);
if (pr) {
console.log("Matching PR found:", pr.number);
return pr.number;
} else {
console.log("No matching PR found for commit SHA:", commitSha);
return '';
}
result-encoding: string

- name: Build and Tag Docker Image
if: steps.get_pr_number.outputs.result != ''
env:
PR_NUMBER: ${{ steps.get_pr_number.outputs.result }}
run: |

Check failure on line 64 in .github/workflows/release-images.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2086:info:1:18: Double quote to prevent globbing and word splitting
echo my-image:pr-${PR_NUMBER}

0 comments on commit 424353f

Please sign in to comment.