-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trigger CI for leanprover/lean4#5835
- Loading branch information
Showing
109 changed files
with
1,314 additions
and
783 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,38 @@ | ||
name: Deploy Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 10 * * *' # daily (UTC 10:00) | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
deploy-docs: | ||
runs-on: ubuntu-latest | ||
if: github.repository_owner == 'leanprover-community' | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Lean | ||
uses: leanprover/lean-action@v1 | ||
with: | ||
test: false | ||
lint: false | ||
use-github-cache: true | ||
|
||
- name: Build Docs | ||
working-directory: docs | ||
run: lake build -q Batteries:docs | ||
|
||
- name: Deploy Docs | ||
run: | | ||
git config user.name "leanprover-community-batteries-bot" | ||
git config user.email "[email protected]" | ||
git checkout -b docs | ||
git add docs/doc docs/doc-data | ||
git commit -m "chore: generate docs" | ||
git push origin docs --force |
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,46 @@ | ||
name: Release Docs | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build-docs: | ||
runs-on: ubuntu-latest | ||
if: github.repository_owner == 'leanprover-community' | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Lean | ||
uses: leanprover/lean-action@v1 | ||
with: | ||
test: false | ||
lint: false | ||
use-github-cache: true | ||
|
||
- name: Build Docs | ||
working-directory: docs | ||
run: lake build -q Batteries:docs | ||
|
||
- name: Compress Docs | ||
working-directory: docs | ||
env: | ||
TAG_NAME: ${{ github.ref_name }} | ||
run: | | ||
tar -czf docs-${TAG_NAME}.tar.gz doc doc-data | ||
zip -rq docs-${TAG_NAME}.zip doc doc-data | ||
- name: Release Docs | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
docs/docs-${{ github.ref_name }}.tar.gz | ||
docs/docs-${{ github.ref_name }}.zip | ||
fail_on_unmatched_files: true |
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,62 @@ | ||
# This workflow assigns `awaiting-review` or `WIP` labels to new PRs, and it removes | ||
# `awaiting-review`, `awaiting-author`, or `WIP` label from closed PRs. | ||
# It does not modify labels for open PRs that already have one of the `awaiting-review`, | ||
# `awaiting-author`, or `WIP` labels. | ||
|
||
name: Label PR from status change | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
- opened | ||
- reopened | ||
- converted_to_draft | ||
- ready_for_review | ||
branches: | ||
- main | ||
|
||
jobs: | ||
auto-label: | ||
if: github.repository_owner == 'leanprover-community' | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Unlabel closed PR | ||
if: github.event.pull_request.state == 'closed' | ||
uses: actions-ecosystem/action-remove-labels@v1 | ||
with: | ||
labels: | | ||
WIP | ||
awaiting-author | ||
awaiting-review | ||
- name: Label unlabeled draft PR as WIP | ||
if: | | ||
github.event.pull_request.state == 'open' && | ||
github.event.pull_request.draft && | ||
! contains(github.event.pull_request.labels.*.name, 'awaiting-author') && | ||
! contains(github.event.pull_request.labels.*.name, 'awaiting-review') && | ||
! contains(github.event.pull_request.labels.*.name, 'WIP') | ||
uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
labels: WIP | ||
|
||
- name: Label unlabeled other PR as awaiting-review | ||
if: | | ||
github.event.pull_request.state == 'open' && | ||
! github.event.pull_request.draft && | ||
! contains(github.event.pull_request.labels.*.name, 'awaiting-author') && | ||
! contains(github.event.pull_request.labels.*.name, 'awaiting-review') && | ||
! contains(github.event.pull_request.labels.*.name, 'WIP') | ||
uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
labels: awaiting-review |
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.