Fix button errors #8015
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: Release Alpha Package | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
triggerPrWorkflow: | |
name: Trigger PR Workflow | |
if: > | |
github.event.issue.pull_request && | |
github.event.comment.body == '@toptal-bot run package:alpha-release' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
actions: write | |
issues: write | |
pull-requests: write | |
env: | |
STATUS_CHECK_NAME: Publish Alpha Package | |
STATUS_TARGET_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
steps: | |
- name: GSM Secrets | |
id: secrets_manager | |
uses: toptal/davinci-github-actions/gsm-secrets@v15.0.0 | |
with: | |
workload_identity_provider: ${{ secrets.IDENTITY_POOL }} | |
service_account: ${{ secrets.SA_IDENTITY_POOL }} | |
secrets_name: |- | |
JENKINS_BUILD_CLIENT_ID:toptal-ci/JENKINS_BUILD_CLIENT_ID | |
JENKINS_BUILD_URL:toptal-ci/JENKINS_BUILD_URL | |
JENKINS_SA_CREDENTIALS:toptal-ci/JENKINS_SA_CREDENTIALS | |
NPM_TOKEN_PUBLISH:toptal-ci/NPM_TOKEN_PUBLISH | |
TOPTAL_DEVBOT_TOKEN:toptal-ci/TOPTAL_DEVBOT_TOKEN | |
TOPTAL_REPOACCESSBOT_TOKEN:toptal-ci/TOPTAL_REPOACCESSBOT_TOKEN | |
TOPTAL_TRIGGERBOT_BUILD_TOKEN:toptal-ci/TOPTAL_TRIGGERBOT_BUILD_TOKEN | |
TOPTAL_TRIGGERBOT_USERNAME:toptal-ci/TOPTAL_TRIGGERBOT_USERNAME | |
- name: Parse secrets | |
id: parse_secrets | |
uses: toptal/davinci-github-actions/expose-json-outputs@v15.0.0 | |
with: | |
json: ${{ steps.secrets_manager.outputs.secrets }} | |
- name: Set ENV Variables | |
run: |- | |
echo "GITHUB_TOKEN=${{ steps.parse_secrets.outputs.TOPTAL_DEVBOT_TOKEN }}" >> $GITHUB_ENV | |
echo "NPM_TOKEN=${{ steps.parse_secrets.outputs.NPM_TOKEN_PUBLISH }}" >> $GITHUB_ENV | |
- name: Feedback on action started | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
script: | | |
const { owner, repo } = context.issue; | |
await github.rest.reactions.createForIssueComment({ owner, repo, comment_id: context.payload.comment.id, content: '+1' }); | |
- id: branch | |
uses: xt0rted/pull-request-comment-branch@v2.0.0 | |
- name: Specify branch | |
id: get-branch | |
run: | | |
echo "branch=${{ steps.branch.outputs.head_ref }}" >> $GITHUB_OUTPUT | |
echo "sha=${{ steps.branch.outputs.head_sha }}" >> $GITHUB_OUTPUT | |
- name: Configure git user | |
run: | | |
git config --global user.email "bot@toptal.com" | |
git config --global user.name "toptal-bot" | |
- name: Checkout the latest code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ env.GITHUB_TOKEN }} | |
ref: ${{ steps.get-branch.outputs.branch }} | |
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo | |
- name: Set status check - pending | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
script: | | |
const { owner, repo } = context.issue; | |
await github.rest.repos.createCommitStatus({ | |
repo, | |
owner, | |
state: 'pending', | |
sha: "${{ steps.get-branch.outputs.sha }}", | |
context: process.env.STATUS_CHECK_NAME, | |
target_url: process.env.STATUS_TARGET_URL | |
}) | |
- name: Trigger alpha package | |
id: alpha-package | |
uses: toptal/davinci-github-actions/build-publish-alpha-package@v15.0.0 | |
with: | |
npm-token: ${{ env.NPM_TOKEN }} | |
branch: ${{ steps.get-branch.outputs.branch }} | |
root-folder: "." | |
- name: Alpha package — Handle success | |
if: ${{ success() }} | |
uses: actions/github-script@v7 | |
env: | |
versions: ${{ steps.alpha-package.outputs.versions }} | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
script: | | |
const { repo: { owner, repo }, issue } = context | |
const { versions } = process.env | |
const body = "Your alpha package is ready 🎉<br/>" + versions.split(' ').reduce((acc, version) => { | |
acc += `\`yarn add ${version}\`<br/>` | |
return acc | |
}, '') | |
await github.rest.issues.createComment({ issue_number: issue.number, owner, repo, body }) | |
- name: Set status check - success / failure / error | |
if: ${{ always() }} | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
script: | | |
const { owner, repo } = context.issue; | |
const status = "${{ job.status }}"; | |
const state = status === 'cancelled' ? 'error' : status; | |
await github.rest.repos.createCommitStatus({ | |
repo, | |
owner, | |
state, | |
sha: "${{ steps.get-branch.outputs.sha }}", | |
context: process.env.STATUS_CHECK_NAME, | |
target_url: process.env.STATUS_TARGET_URL | |
}) | |
- name: Get toptal/actions | |
uses: actions/checkout@v4 | |
with: | |
repository: toptal/actions | |
token: ${{ steps.parse_secrets.outputs.TOPTAL_REPOACCESSBOT_TOKEN }} | |
path: ./.github/actions/ | |
- name: Replace toptal/actions/get-job-url@main from trigger-jenkins-job/action.yml | |
shell: bash | |
run: | | |
sed -i 's|toptal/actions/get-job-url@main|./.github/actions/get-job-url|' ./.github/actions/trigger-jenkins-job/action.yml | |
sed -i 's|toptal/actions/trigger-jenkins-job@main|./.github/actions/trigger-jenkins-job|' ./.github/actions/create-jira-deployment/action.yml | |
- name: Create Jira deployment | |
uses: ./.github/actions/create-jira-deployment/ | |
with: | |
jenkins_url: ${{ steps.parse_secrets.outputs.JENKINS_BUILD_URL }} | |
jenkins_user: ${{ steps.parse_secrets.outputs.TOPTAL_TRIGGERBOT_USERNAME }} | |
jenkins_token: ${{ steps.parse_secrets.outputs.TOPTAL_TRIGGERBOT_BUILD_TOKEN }} | |
jenkins_client_id: ${{ steps.parse_secrets.outputs.JENKINS_BUILD_CLIENT_ID }} | |
jenkins_sa_credentials: ${{ steps.parse_secrets.outputs.JENKINS_SA_CREDENTIALS }} | |
token: ${{ env.GITHUB_TOKEN }} | |
environment: development | |
environment-url: https://www.npmjs.com/package/@toptal/picasso?activeTab=versions |