chore(deps): bump SonarSource/sonarcloud-github-action from 3.0.0 to 3.1.0 #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI for shopify-tracker | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
extract-version: | |
name: Extract Version | |
runs-on: ubuntu-latest | |
if: ((startsWith(github.event.pull_request.head.ref, 'release/') || startsWith(github.event.pull_request.head.ref, 'hotfix-release/')) && github.event.pull_request.merged == true) | |
outputs: | |
version: ${{ steps.get-version.outputs.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.0 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 1 | |
- name: Get image version | |
id: get-version | |
run: | | |
version=$(jq -r .version package.json) | |
echo "Version: $version" | |
echo "version=$version" >> $GITHUB_OUTPUT | |
build: | |
name: Build Shopify Tracker Docker Image | |
if: ((startsWith(github.event.pull_request.head.ref, 'release/') || startsWith(github.event.pull_request.head.ref, 'hotfix-release/')) && github.event.pull_request.merged == true) | |
needs: [extract-version] | |
uses: ./.github/workflows/build-and-push-docker-image.yml | |
with: | |
img_tag: ${{ needs.extract-version.outputs.version }} | |
secrets: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
create-pull-request: | |
name: Create Pull Request for Shopify Tracker Helm Chart | |
runs-on: ubuntu-latest | |
needs: [extract-version, build] | |
env: | |
TAG_NAME: ${{ needs.extract-version.outputs.version }} | |
steps: | |
- name: Initialize Mandatory Git Config | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "noreply@github.com" | |
- name: Clone Devops Repo | |
run: | | |
git clone https://${{secrets.PAT}}@github.com/rudderlabs/rudder-devops.git | |
- name: Extract branch name | |
id: extract_branch_name | |
run: | | |
cd rudder-devops | |
branch_name=$(git rev-parse --abbrev-ref HEAD) | |
echo "branch_name=$branch_name" | |
echo "branch_name=$branch_name" >> $GITHUB_OUTPUT | |
- name: Update Helm Chart and Raise Pull Request For Shopify Tracker | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT }} | |
SP_IMAGE_REPOSITORY: rudderstack/rudder-shopify-tracker | |
run: | | |
cd rudder-devops | |
git checkout -b shopify-tracker-$TAG_NAME ${{steps.extract_branch_name.outputs.branch_name}} | |
cd helm-charts/helm/shopify-tracking | |
yq eval -i ".image.tag=\"$TAG_NAME\"" values.yaml | |
yq eval -i ".image.repository=\"$SP_IMAGE_REPOSITORY\"" values.yaml | |
git add values.yaml | |
git commit -m "chore: upgrade shopify tracker to $TAG_NAME" | |
git push -u origin shopify-tracker-$TAG_NAME | |
gh pr create --fill |