Skip to content

Commit 952e907

Browse files
authored
Merge branch 'main' into fix/2944-task-dropdown
2 parents 9dbbbed + 6765252 commit 952e907

File tree

320 files changed

+26461
-3975
lines changed

Some content is hidden

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

320 files changed

+26461
-3975
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

.github/workflows/release.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,24 @@ jobs:
122122
package_version=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[0].version')
123123
echo "package_version=${package_version}" >> "$GITHUB_OUTPUT"
124124
125-
# this triggers the publish workflow for the docker images
126125
- name: Create and push Docker tag
127126
if: steps.changesets.outputs.published == 'true'
128127
run: |
129128
set -e
130129
git tag "v.docker.${{ steps.get_version.outputs.package_version }}"
131130
git push origin "v.docker.${{ steps.get_version.outputs.package_version }}"
132131
132+
# Trigger Docker builds directly via workflow_call since tags pushed with
133+
# GITHUB_TOKEN don't trigger other workflows (GitHub Actions limitation).
134+
publish-docker:
135+
name: 🐳 Publish Docker images
136+
needs: release
137+
if: needs.release.outputs.published == 'true'
138+
uses: ./.github/workflows/publish.yml
139+
secrets: inherit
140+
with:
141+
image_tag: v${{ needs.release.outputs.published_package_version }}
142+
133143
# The prerelease job needs to be on the same workflow file due to a limitation related to how npm verifies OIDC claims.
134144
prerelease:
135145
name: 🧪 Prerelease
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 }}

0 commit comments

Comments
 (0)