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

♻️ci: refactor workflows #538

Merged
merged 2 commits into from
Oct 4, 2024
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.mjs text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.mts text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
.dockerignore text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
.editorconfig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
.gitattributes text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
Expand Down
4 changes: 2 additions & 2 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
🍱asset:
- changed-files:
- any-glob-to-any-file: 'public/**'
- any-glob-to-any-file: ['app/favicon.ico', 'public/**', 'app/**/*.png', 'app/**/*.svg']
♻️ci:
- changed-files:
- any-glob-to-any-file: '.github/**/*.yml'
Expand All @@ -15,7 +15,7 @@ docker:
- any-glob-to-any-file: ['.dockerignore', 'Dockerfile']
📝documentation:
- changed-files:
- any-glob-to-any-file: '**/*.md'
- any-glob-to-any-file: ['**/*.md', '**/*.txt']
🚀enhancement:
- head-branch: ['^feature', 'feature', '^enhancement', 'enhancement']
✨feature:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- opened
- reopened

permissions:
issues: write
pull-requests: write

env:
GH_TOKEN: ${{ github.token }}

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ concurrency:
cancel-in-progress: true

on:
push:
pull_request:
push:
branches: main
workflow_dispatch:

permissions:
contents: read

jobs:
quality:
runs-on: ubuntu-24.04
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/bun-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@ concurrency:
cancel-in-progress: true

on:
push:
pull_request:
paths:
- "app/**"
- "public/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
pull_request:
push:
paths:
- "app/**"
- "public/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
workflow_dispatch:
Expand All @@ -31,6 +35,8 @@ jobs:

- name: Install bun
uses: oven-sh/setup-bun@v2
with:
bun-version: canary

- name: Install dependencies
run: bun i
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cleanup-cashes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ on:
paths:
- "app/**"
- "public/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
types:
Expand All @@ -32,6 +34,6 @@ jobs:
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ github.token }}
REPO: ${{ github.repository }}
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge
29 changes: 17 additions & 12 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,23 @@ concurrency:
cancel-in-progress: true

on:
push:
pull_request_target:
paths:
- "app/**"
- "public/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
pull_request_target:
push:
branches: main
paths:
- "app/**"
- "public/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
workflow_dispatch:
Expand All @@ -27,23 +32,24 @@ on:
default: false
type: boolean

permissions:
attestations: write
contents: read
id-token: write
packages: write
pull-requests: write

env:
REPOSITORY_OWNER: openup-labtakizawa
REPOSITORY: marukome0743/homepage
GHCR_REGISTRY: ghcr.io
GHCR_REPOSITORY: openup-labtakizawa/homepage
SHA: ${{ github.event.pull_request.head.sha || github.event.after }}
IS_PUSH: ${{ github.ref_type == 'tag' || inputs.push || github.event_name == 'push' && github.repository_owner == 'openup-labtakizawa' && github.ref_name == 'main' }}
IS_PUSH: ${{ github.event_name == 'push' || github.ref_type == 'tag' || inputs.push }}

jobs:
build:
runs-on: ubuntu-24.04
permissions:
attestations: write
contents: read
id-token: write
packages: write
pull-requests: write
if: github.repository_owner == 'openup-labtakizawa'

steps:
- name: Checkout
Expand All @@ -58,7 +64,6 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
if: github.repository_owner == env.REPOSITORY_OWNER
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
Expand Down Expand Up @@ -111,7 +116,7 @@ jobs:
subject-digest: ${{ steps.push.outputs.digest }}

- name: Docker Scout
if: github.repository_owner == env.REPOSITORY_OWNER && github.event_name == 'pull_request_target'
if: github.event_name == 'pull_request_target'
uses: docker/scout-action@v1
with:
command: compare,cves,recommendations
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
paths:
- "app/**"
- "public/**"
- ".dockerignore"
- "bun.lockb"
- "package.json"
- "*config.*"
Expand Down
Binary file modified bun.lockb
Binary file not shown.
Loading