Skip to content

chore: add action dependency rules for automerging and pinning digests #365

chore: add action dependency rules for automerging and pinning digests

chore: add action dependency rules for automerging and pinning digests #365

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- main
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v2.1.1
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Semantic Release
uses: cycjimmy/semantic-release-action@9cc899c47e6841430bbaedb43de1560a568dfd16 # v5.0.0
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
with:
semantic_version: 24.2.7
extra_plugins: |
- conventional-changelog-conventionalcommits@9.0.0