Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-auchincloss committed Feb 19, 2024
1 parent b8e0ded commit cee696d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/auto-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
push:
branches:
- ci

jobs:
pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: pull-request
uses: diillson/[email protected]
with:
destination_branch: main
# ci skip because these are ci outputs thus we do not want to trigger a re-run loop
pr_title: 'chore: ci updates [ci skip]'
7 changes: 6 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,13 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v5
with:
go-version: stable

- name: Install Task
uses: arduino/setup-task@v2
run: |
go install github.com/go-task/task/v3/cmd/task@latest
- name: Install llvm
if: startsWith(matrix.os, 'macos-')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
set +e
git add CHANGELOG.md
git commit -m "chore: update changelog [ci skip]"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/joshua-auchincloss/hatch-cython.git main
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/joshua-auchincloss/hatch-cython.git ci
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v5
with:
go-version: stable

- name: Install Task
uses: arduino/setup-task@v2
run: |
go install github.com/go-task/task/v3/cmd/task@latest
- name: Install llvm
if: startsWith(matrix.os, 'macos-')
Expand Down

0 comments on commit cee696d

Please sign in to comment.