Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Ttt #1

Merged
merged 3 commits into from
Jan 23, 2025
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: 2 additions & 1 deletion .github/workflows/build-image-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ env:
IMAGE_TAG: pr-test

permissions:
contents: read
contents: none
# contents: read # To read Dockerfile and codebase

jobs:
build:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ on:
- created
schedule:
- cron: 00 00 * * *
push:

permissions:
contents: read
packages: write
contents: none
# contents: read # To read Dockerfile and codebase
# packages: write # To publish container image

jobs:
docker:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ on:
workflow_call: # a way to embed the main tests

permissions:
contents: read
contents: none
# contents: read # To read codebase

concurrency:
group: >-
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- edited
- synchronize

permissions:
contents: none
# pull-requests: read # To read the PR title

jobs:
main:
name: Validate PR title
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ name: Common issues check

on: [pull_request]

permissions:
contents: none
# contents: write # Backpush pre-commit fixes


jobs:
pre-commit:
runs-on: ubuntu-latest
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ on:
- .pre-commit-hooks.yaml
# Ignore paths
- '!tests/**'

permissions:
contents: none
# contents: write # To create releases

jobs:
release:
name: Release
Expand All @@ -34,4 +39,4 @@ jobs:
@semantic-release/[email protected]
@semantic-release/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions .github/workflows/scheduled-runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- cron: 3 5 * * * # run daily at 5:03 UTC
workflow_dispatch: # manual trigger

permissions:
contents: none
# contents: read # To read codebase

run-name: >-
🌃
Nightly run of
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/stale-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on:
schedule:
- cron: 0 0 * * *

permissions:
contents: none
# contents: write # To delete branches.
# issues: write # To mark and close stale issues.
# pull-requests: write # To mark and close stale pull requests.

jobs:
stale:
runs-on: ubuntu-latest
Expand Down
Loading