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

enhance(github): taiymeize workflows #256

Merged
merged 1 commit into from
Aug 29, 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
File renamed without changes.
File renamed without changes.
15 changes: 0 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE/01_bug.md

This file was deleted.

15 changes: 0 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE/02_enhance.md

This file was deleted.

15 changes: 0 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE/03_release.md

This file was deleted.

48 changes: 0 additions & 48 deletions .github/dependabot.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/labeler.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
packages/backend:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/backend/**/*

packages/backend:test:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/backend/test/**/*

packages/frontend:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/frontend/**/*

packages/frontend:test:
- any:
- changed-files:
- any-glob-to-any-file:
- cypress/**/*

packages/sw:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/sw/**/*

packages/misskey-js:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/misskey-js/**/*

packages/misskey-js:test:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/misskey-js/test/**/*
- packages/misskey-js/test-d/**/*
34 changes: 0 additions & 34 deletions .github/labeler.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/misskey/test.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/api-misskey-js.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/check-misskey-js-version.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,28 @@ on:
push:
branches:
- taiyme
paths:
- .github/workflows/check-spdx-license-id.yaml
- cypress/e2e/**/*
- packages/**/*
- scripts/**/*
pull_request:
paths:
- .github/workflows/check-spdx-license-id.yaml
- cypress/e2e/**/*
- packages/**/*
- scripts/**/*
workflow_dispatch:

jobs:
check-spdx-license-id:
runs-on: ubuntu-latest
check_spdx_license_id:
name: Check SPDX-License-Identifier
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Check
uses: actions/checkout@v4

- name: Check SPDX-License-Identifier
run: |
counter=0

Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/check_copyright_year.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build docker image
name: Publish Docker image

on:
workflow_call:
Expand All @@ -18,8 +18,8 @@ permissions:
jobs:
# see https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
build:
name: build_amd64
runs-on: ubuntu-latest
name: Build
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -80,7 +80,8 @@ jobs:
retention-days: 1

merge:
runs-on: ubuntu-latest
name: Merge
runs-on: ubuntu-22.04
needs:
- build
steps:
Expand Down
31 changes: 0 additions & 31 deletions .github/workflows/dockle.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pull Request Labeler

on:
pull_request_target:

jobs:
triage:
name: Triage
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yaml
sync-labels: true
Loading