-
Notifications
You must be signed in to change notification settings - Fork 16
38 lines (32 loc) · 1.12 KB
/
prepare-version.yml
File metadata and controls
38 lines (32 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Prepare Version
on:
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: read
jobs:
changeset-action:
name: Run Changeset Action
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: "🛃 Harden the runner (Audit all outbound calls)"
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
with:
egress-policy: audit
- name: "🛒 Checkout Repository"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ssh-key: ${{ secrets.GH_PUSH_PROTECTED_KEY }}
fetch-depth: 0
- uses: ./.github/templates/node-setup
- name: Create Pull Request
uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0
with:
publish: "exit 1" # Fail on publish - Should always only create a PR
createGithubReleases: false
title: "chore: update onyx versions and changelogs for release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}