From b42a866668fe474600a999234d1a04b688b79eee Mon Sep 17 00:00:00 2001 From: Midou Date: Sun, 6 Jul 2025 20:52:01 +0100 Subject: [PATCH] No need for those files. --- .github/workflows/pr-lint.yaml | 36 ------------------------------ .github/workflows/site-pr.yml | 20 ----------------- .github/workflows/site-publish.yml | 32 -------------------------- 3 files changed, 88 deletions(-) delete mode 100644 .github/workflows/pr-lint.yaml delete mode 100644 .github/workflows/site-pr.yml delete mode 100644 .github/workflows/site-publish.yml diff --git a/.github/workflows/pr-lint.yaml b/.github/workflows/pr-lint.yaml deleted file mode 100644 index db76b47e..00000000 --- a/.github/workflows/pr-lint.yaml +++ /dev/null @@ -1,36 +0,0 @@ ---- -name: Lint PR -on: - pull_request_target: - types: [opened, reopened, edited, synchronize] -permissions: - pull-requests: write -jobs: - main: - name: Validate PR title - runs-on: ubuntu-latest - steps: - - uses: amannn/action-semantic-pull-request@v5 - id: lint_pr_title - env: - GITHUB_TOKEN: ${{ secrets.USER_TOKEN }} - - uses: marocchino/sticky-pull-request-comment@v2 - # When the previous steps fails, the workflow would stop. By adding this - # condition you can continue the execution with the populated error message. - if: always() && (steps.lint_pr_title.outputs.error_message != null) - with: - header: pr-title-lint-error - message: | - Hey there and thank you for opening this pull request! 👋🏼 - We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted. - Details: - ``` - ${{ steps.lint_pr_title.outputs.error_message }} - ``` - - # Delete a previous comment when the issue has been resolved - - if: ${{ steps.lint_pr_title.outputs.error_message == null }} - uses: marocchino/sticky-pull-request-comment@v2 - with: - header: pr-title-lint-error - delete: true diff --git a/.github/workflows/site-pr.yml b/.github/workflows/site-pr.yml deleted file mode 100644 index c3075c93..00000000 --- a/.github/workflows/site-pr.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Build Site - -on: - pull_request: - paths: - - 'www' - - '*.md' - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Build site - run: make site diff --git a/.github/workflows/site-publish.yml b/.github/workflows/site-publish.yml deleted file mode 100644 index e3618a99..00000000 --- a/.github/workflows/site-publish.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Deploy Site - -on: - push: - branches: - - master - -jobs: - deploy: - permissions: - contents: read - deployments: write - pull-requests: write - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Build site - run: make site - - - name: Deploy to Cloudflare Pages - uses: cloudflare/wrangler-action@v3 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - command: pages deploy www/public --project-name=${{ secrets.CLOUDFLARE_PROJECT_NAME }} - gitHubToken: ${{ secrets.GITHUB_TOKEN }}