[temp] automate auth-spa version bump #4
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: π Nightly Version Bump | |
on: | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
env: | |
GH_TOKEN: ${{ secrets.RELEASE_BOT_TOKEN }} | |
BOT_USERNAME: ${{ secrets.RELEASE_BOT_USER_NAME }} | |
BOT_EMAIL: ${{ secrets.RELEASE_BOT_EMAIL }} | |
BASE_BRANCH: 'main' | |
jobs: | |
bump-version: | |
name: π Nightly Version Bump | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [lts/*] | |
maven-version: [3.8.6] | |
java-version: [1.8] | |
pnpm-version: [8.7.4] | |
steps: | |
- name: β¬οΈ Checkout | |
id: checkout | |
uses: actions/checkout@v2.3.3 | |
with: | |
fetch-depth: 0 | |
- name: π Set up Git | |
run: | | |
git config user.name ${{ env.BOT_USERNAME }}} | |
git config user.email ${{ env.BOT_EMAIL }}} | |
- name: π·οΈ Set branch name | |
id: set-branch-name | |
run: | | |
base_branch=${{ env.BASE_BRANCH }} | |
version_bump_branch="asgardeo-auth-spa-version-bump/$base_branch" | |
echo "Setting branch name to: $version_bump_branch" | |
echo "VERSION_BUMP_BRANCH=${version_bump_branch}" >> $GITHUB_ENV | |
- name: π Create version bump branch | |
id: create-branch | |
run: | | |
echo "Checking out a new branch: $VERSION_BUMP_BRANCH" | |
git checkout -b "$VERSION_BUMP_BRANCH" | |
git push origin "$VERSION_BUMP_BRANCH" | |
- name: π Get the latest `@asgardeo/auth-spa` release version | |
id: get-latest-auth-spa-version | |
run: | | |
latest_release=$(curl -s https://api.github.com/repos/asgardeo/asgardeo-auth-spa-sdk/releases/latest | jq -r '.tag_name') | |
echo "::set-output name=version::${latest_release}" | |
tree | |
# - name: π Create pull request | |
# id: create-pr | |
# run: | | |
# echo "VERSION_BUMP_BRANCH: $VERSION_BUMP_BRANCH" | |
# echo "Creating pull request from $base_branch to $VERSION_BUMP_BRANCH" | |
# gh pr create --base $base_branch --head $VERSION_BUMP_BRANCH --title "[Nightly Version Bump] [GitHub Action] Update package versions" --body "Bump versions" |