Skip to content

Commit

Permalink
Commit Inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbdornas committed Oct 4, 2023
0 parents commit 8268343
Show file tree
Hide file tree
Showing 31 changed files with 1,163 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/add_assignee_to_closed_issue_reusable.yml
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 }}
13 changes: 13 additions & 0 deletions .github/workflows/add_project_to_issue.yml
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 }}
33 changes: 33 additions & 0 deletions .github/workflows/publish_github_pages.yml
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
13 changes: 13 additions & 0 deletions .github/workflows/set_due_date_to_closed_issue.yml
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 }}
Loading

0 comments on commit 8268343

Please sign in to comment.