Skip to content

Commit e1eadaa

Browse files
committed
Merge branch 'main' of github.com:tensorzero/experimental-ci-bot into gb/gb-variant
2 parents 5e5cfcb + d966474 commit e1eadaa

24 files changed

+32485
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Close Follow-up PRs
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
close-followup-prs:
13+
runs-on: ubuntu-latest
14+
name: Close Follow-up PRs
15+
steps:
16+
- name: Close Follow-up PRs
17+
uses: tensorzero/experimental-ci-bot/close-followup-prs@main
18+
with:
19+
github-token: ${{ secrets.GITHUB_TOKEN }}

close-followup-prs/action.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: close-followup-prs
2+
description: Close bot-created follow-up PRs when the base PR is closed.
3+
author: tensorzero
4+
5+
branding:
6+
icon: git-pull-request
7+
color: blue
8+
9+
inputs:
10+
github-token:
11+
description: GitHub token with write access to pull requests and contents.
12+
required: true
13+
14+
runs:
15+
using: node24
16+
main: ../dist/close-followup-prs/index.js

0 commit comments

Comments
 (0)