-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from Itheum/d-david
D david
- Loading branch information
Showing
16 changed files
with
10,476 additions
and
4,164 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,42 @@ | ||
name: Determine Next Release Version | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
determine-release-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20.x' | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Determine next release version | ||
id: determine_version | ||
run: | | ||
NEXT_VERSION=$(npx semantic-release --dry-run | grep 'The next release version is' | sed -E 's/.* ([[:digit:].]+)$/\1/') | ||
echo "::set-output name=next_version::$NEXT_VERSION" | ||
- name: Post comment on PR | ||
uses: actions/github-script@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const { context, github } = require('@actions/github'); | ||
const version = context.payload.inputs.version; | ||
const prNumber = context.payload.pull_request.number; | ||
const repo = context.repo; | ||
const comment = `Suggested next semantic release version: ${version}`; | ||
github.issues.createComment({...repo, issue_number: prNumber, body: comment}); | ||
env: | ||
version: ${{ steps.determine_version.outputs.next_version }} |
Oops, something went wrong.