-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6079baa
commit 46a6a58
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
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: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: π Set up Git | ||
run: | | ||
git config user.name ${{ env.BOT_USERNAME }}} | ||
git config user.email ${{ env.BOT_EMAIL }}} | ||
- name: β¬οΈ Checkout code | ||
id: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ env.GH_TOKEN }} | ||
fetch-depth: 0 | ||
|
||
- 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" |