Bump @babel/types from 7.24.0 to 7.25.9 #2523
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: Handle contribution | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review] | |
branches: | |
- master | |
jobs: | |
call-notify-jira-about-contribution: | |
if: ${{ github.event.pull_request.head.ref != 'changeset-release/master' }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
actions: write | |
issues: write | |
pull-requests: write | |
name: Call notify jira about contribution | |
steps: | |
- name: GSM Secrets | |
id: secrets_manager | |
uses: toptal/davinci-github-actions/[email protected] | |
with: | |
workload_identity_provider: ${{ secrets.IDENTITY_POOL }} | |
service_account: ${{ secrets.SA_IDENTITY_POOL }} | |
secrets_name: |- | |
PICASSO_JIRA_AUTOMATION_HOOK_FOR_NEW_CONTRIBUTION:toptal-ci/PICASSO_JIRA_AUTOMATION_HOOK_FOR_NEW_CONTRIBUTION | |
TOPTAL_DEVBOT_TOKEN:toptal-ci/TOPTAL_DEVBOT_TOKEN | |
- name: Parse secrets | |
id: parse_secrets | |
uses: toptal/davinci-github-actions/[email protected] | |
with: | |
json: ${{ steps.secrets_manager.outputs.secrets }} | |
- uses: toptal/davinci-github-actions/[email protected] | |
with: | |
team: frontend-experience-eng | |
repo: ${{ github.event.repository.name }} | |
pull-number: ${{ github.event.pull_request.number}} | |
jira-hook: ${{ steps.parse_secrets.outputs.PICASSO_JIRA_AUTOMATION_HOOK_FOR_NEW_CONTRIBUTION }} | |
github-token: ${{ steps.parse_secrets.outputs.TOPTAL_DEVBOT_TOKEN }} | |
should-notify-about-major-dependency-updates: true |