-
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.
- Loading branch information
0 parents
commit 8268343
Showing
31 changed files
with
1,163 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
.github/workflows/add_assignee_to_closed_issue_reusable.yml
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,12 @@ | ||
# This uses a reusable workflow | ||
name: Add assignee to closed issue | ||
|
||
on: | ||
issues: | ||
types: [closed] | ||
|
||
jobs: | ||
add_assignee_to_closed_issue: | ||
uses: o-futuro-ja-comecou/github-actions-reutilizaveis/.github/workflows/[email protected] | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GH_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This uses a reusable workflow | ||
name: Add project to issue | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
add_project_to_issue: | ||
uses: o-futuro-ja-comecou/github-actions-reutilizaveis/.github/workflows/[email protected] | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
PROJECT_NUMBER: ${{ secrets.PROJECT_NUMBER }} |
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,33 @@ | ||
name: Publish documentation on GitHub pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
|
||
jobs: | ||
publish_documentation_on_github_pages: | ||
runs-on: Ubuntu-20.04 | ||
steps: | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.10.2 | ||
|
||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Git user | ||
uses: fregante/setup-git-user@v2 | ||
|
||
- name: Install packages | ||
run: pip install -r requirements.txt | ||
|
||
- name: Publish Documentation | ||
run: mkdocs gh-deploy |
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,13 @@ | ||
# This uses a reusable workflow | ||
name: Set due date to closed issue | ||
|
||
on: | ||
issues: | ||
types: [closed] | ||
|
||
jobs: | ||
set_due_date_to_closed_issue: | ||
uses: o-futuro-ja-comecou/github-actions-reutilizaveis/.github/workflows/[email protected] | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
PROJECT_NUMBER: ${{ secrets.PROJECT_NUMBER }} |
Oops, something went wrong.