forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub template and workflows needed on the default branch (#136)
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 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
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: "Close stale PRs" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" # every night at midnight | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Comment or remove stale label, or this PR will be closed in 5 days.' | ||
days-before-stale: 30 | ||
days-before-close: 5 | ||
stale-pr-label: 'stale' |
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,29 @@ | ||
name: "Update upstream branches" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" # every night at midnight | ||
workflow_dispatch: | ||
|
||
jobs: | ||
PullUpstream: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false # run all jobs in the matrix even if one fails | ||
matrix: | ||
branch: | ||
- "master" | ||
- "backports-release-1.10" | ||
- "backports-release-1.9" | ||
steps: | ||
- name: Checkout RAI/julia | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ matrix.branch }} | ||
- name: Update ${{ matrix.branch }} | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "RAI CI (GitHub Action Automation)" | ||
git remote add upstream https://github.com/JuliaLang/julia | ||
git pull upstream ${{ matrix.branch }} | ||
git push origin ${{ matrix.branch }} |