Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: "🧪 Build & test code"

permissions:
contents: read

on:
workflow_dispatch:
workflow_call:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: "📚 Publish Docs"

permissions:
contents: write

on:
# Workflow dispatch is used for manual triggers
workflow_dispatch:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: '💎 Code quality'

permissions:
contents: read

on:
workflow_dispatch:
workflow_call:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/on-pr-to-main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: '➕ Pull Request'

permissions:
contents: read
pull-requests: write

on:
pull_request:
types:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/on-push-any-branch.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: '✨ On push to any branch'

permissions:
contents: read

on:
push:
branches:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/on-push-main-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main

permissions:
contents: write

jobs:
publish-docs:
name: '️‍📚️ Publish Docs'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: 🚀 Upload Python Package

permissions:
contents: read

on:
workflow_dispatch:
workflow_call:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
name: 🎉 Release Please

permissions:
contents: write
issues: write
pull-requests: write

on:
push:
branches:
Expand Down