Skip to content

Commit 3ed5879

Browse files
authored
chore(ci): action to redo typo PRs (#8553)
1 parent a7fb791 commit 3ed5879

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/redo-typo-pr.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Redo Typo PR
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
pr_number:
7+
description: 'The PR number to redo'
8+
required: true
9+
type: string
10+
11+
jobs:
12+
redo-typo-pr:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
18+
19+
- name: Set up GitHub CLI
20+
uses: actions/setup-gh@v2
21+
with:
22+
token: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }}
23+
24+
- name: Run repo-typo-pr script
25+
run: ./scripts/repo-typo-pr ${{ github.event.inputs.pr_number }}

0 commit comments

Comments
 (0)