-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
933fbbf
commit faa0e3a
Showing
11 changed files
with
5,186 additions
and
3,322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Setup PNPM | ||
author: comma.ai | ||
description: Setup PNPM for use in GitHub Actions | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- uses: pnpm/action-setup@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: package.json | ||
cache: pnpm | ||
|
||
- shell: bash | ||
run: pnpm install --frozen-lockfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup-pnpm | ||
|
||
- run: pnpm build | ||
|
||
- name: Upload built project | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./dist | ||
overwrite: true | ||
retention-days: 1 | ||
name: build-artifacts-${{ github.run_id }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: preview | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["build"] | ||
types: | ||
- requested | ||
- completed | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
jobs: | ||
preview: | ||
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download build artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build-artifacts-${{ github.event.workflow_run.id }} | ||
path: ./dist | ||
run-id: ${{ github.event.workflow_run.id }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Find PR number | ||
id: pr | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const response = await github.rest.search.issuesAndPullRequests({ | ||
q: 'repo:${{ github.repository }} is:pr sha:${{ github.event.workflow_run.head_sha }}', | ||
per_page: 1, | ||
}) | ||
const items = response.data.items | ||
if (items.length < 1) { | ||
console.error('No PRs found') | ||
return | ||
} | ||
const pullRequestNumber = items[0].number | ||
console.info("Pull request number is", pullRequestNumber) | ||
return pullRequestNumber | ||
# deploy | ||
- name: Deploy to Cloudflare Pages | ||
id: cloudflare-publish | ||
uses: cloudflare/pages-action@v1.5.0 | ||
with: | ||
branch: ${{ steps.pr.outputs.result }} | ||
projectName: new-connect | ||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} | ||
directory: dist | ||
|
||
- name: Comment URL on PR | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: | | ||
<!-- _(run_id **${{ github.run_id }}**)_ --> | ||
Welcome to new-connect! Make sure to: | ||
* read the [contributing guidelines](https://github.com/commaai/new-connect?tab=readme-ov-file#contributing) | ||
* mark your PR as a draft until it's ready to review | ||
* post the preview on [Discord](https://discord.comma.ai); feedback from users will speedup the PR review | ||
deployed preview: https://${{ steps.pr.outputs.result }}.new-connect.pages.dev | ||
comment_tag: run_id | ||
pr_number: ${{ steps.pr.outputs.result }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.