Skip to content

Commit 0b9304e

Browse files
Merge branch 'main' into fix/replay-payload-2813-clean
2 parents 5ff065b + 38981f5 commit 0b9304e

File tree

272 files changed

+23142
-3828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+23142
-3828
lines changed

.changeset/add-debounce-maxdelay.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/calm-hooks-wait.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/consistent-stream-targets.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/export-start-attempt-hook-type.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-dead-process-execute-hang.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/vendor-superjson-esm-fix.md

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Vouch Request
2+
description: Request to be vouched as a contributor
3+
labels: ["vouch-request"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Vouch Request
9+
10+
We use [vouch](https://github.com/mitchellh/vouch) to manage contributor trust. PRs from unvouched users are automatically closed.
11+
12+
To get vouched, fill out this form. A maintainer will review your request and vouch for you by commenting on this issue.
13+
- type: textarea
14+
id: context
15+
attributes:
16+
label: Why do you want to contribute?
17+
description: Tell us a bit about yourself and what you'd like to work on.
18+
placeholder: "I'd like to fix a bug I found in..."
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: prior-work
23+
attributes:
24+
label: Prior contributions or relevant experience
25+
description: Links to previous open source work, relevant projects, or anything that helps us understand your background.
26+
placeholder: "https://github.com/..."
27+
validations:
28+
required: false

.github/VOUCHED.td

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Vouched contributors for Trigger.dev
2+
# See: https://github.com/mitchellh/vouch
3+
#
4+
# Org members
5+
0ski
6+
D-K-P
7+
ericallam
8+
matt-aitken
9+
mpcgrid
10+
myftija
11+
nicktrn
12+
samejr
13+
isshaddad
14+
# Outside contributors
15+
gautamsi
16+
capaj
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Vouch - Check PR
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, reopened]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
issues: read
11+
12+
jobs:
13+
check-pr:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: mitchellh/vouch/action/check-pr@main
18+
with:
19+
pr-number: ${{ github.event.pull_request.number }}
20+
auto-close: true
21+
require-vouch: true
22+
env:
23+
GH_TOKEN: ${{ github.token }}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Vouch - Manage by Issue
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
permissions:
8+
contents: write
9+
issues: write
10+
11+
jobs:
12+
manage:
13+
runs-on: ubuntu-latest
14+
if: >-
15+
contains(github.event.comment.body, 'vouch') ||
16+
contains(github.event.comment.body, 'denounce') ||
17+
contains(github.event.comment.body, 'unvouch')
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: mitchellh/vouch/action/manage-by-issue@main
21+
with:
22+
comment-id: ${{ github.event.comment.id }}
23+
issue-id: ${{ github.event.issue.number }}
24+
env:
25+
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)