Skip to content

Commit

Permalink
Merge pull request #7 from CCBR/dev
Browse files Browse the repository at this point in the history
chore: adding GHAs
  • Loading branch information
kopardev authored Mar 28, 2024
2 parents 03e2829 + 71962aa commit 7fb6ade
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/add_reponame_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Auto add reponame as label to all issues and PRs

on:
issues:
pull_request:

jobs:
add_label:
uses: CCBR/.github/.github/workflows/add_reponame_issue_label.yml@v0.2.0
secrets: inherit
16 changes: 16 additions & 0 deletions .github/workflows/auto-add-user-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Add to personal projects

on:
issues:
types:
- assigned
pull_request:
types:
- assigned

jobs:
add-to-project:
uses: CCBR/.github/.github/workflows/auto-add-user-project.yml@6af5593b1ad6d7ee2b7f4c23b351902d4baaacd6
with:
username: ${{ github.event.assignee.login }}
secrets: inherit
20 changes: 20 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: docs
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "docs/**"

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11
- run: pip install --upgrade pip
- run: pip install -r docs/requirements.txt
- run: mkdocs gh-deploy --force

0 comments on commit 7fb6ade

Please sign in to comment.