Skip to content

Commit

Permalink
chore(ci): Add Git Town Workflow for Stacked PRs
Browse files Browse the repository at this point in the history
Adds an action that shows an overview of PR stacks inside GitHub PRs.
  • Loading branch information
pklaschka committed Dec 7, 2024
1 parent f57c0ff commit 8195f2c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/git-town.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Git Town

on:
pull_request:
branches:
- '**'

jobs:
git-town:
name: Display the branch stack
runs-on: ubuntu-latest

permissions:
contents: read
pull-requests: write

steps:
- uses: actions/checkout@v4
- uses: git-town/action@v1

0 comments on commit 8195f2c

Please sign in to comment.