diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 0977861..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Build - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - lfs: 'true' - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version-file: 'go.mod' - - - name: Install dependencies - run: | - go install github.com/mickael-menu/tesh@latest - - - name: Build - run: make build - - - name: Test - run: make test - - - name: Tesh - # See https://github.com/actions/runner/issues/241#issuecomment-924327172 - shell: script --return --quiet --command "bash {0}" - run: make tesh - diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 75b8044..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: "CodeQL code scanning" - -on: - push: - branches: [ main ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ main ] - schedule: - # Wed 23:33 UTC - - cron: '33 23 * * 3' - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'go' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 25df6e1..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Release - -on: - workflow_dispatch: - push: - tags: - - 'v*' - -jobs: - homebrew: - runs-on: macos-latest - steps: - - name: Checkout repo - uses: actions/checkout@v4 - - name: Update Homebrew formula - uses: dawidd6/action-homebrew-bump-formula@v3 - with: - token: ${{secrets.HOMEBREW_GITHUB_TOKEN}} - formula: zk diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml deleted file mode 100644 index f6a5e30..0000000 --- a/.github/workflows/triage.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Triage - -on: - push: - paths: - - .github/workflows/triage.yml - schedule: - # Once every day at midnight UTC - - cron: "0 0 * * *" - -permissions: - issues: write - pull-requests: write - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v9 - with: - days-before-stale: 30 - - days-before-issue-close: 5 - stale-issue-label: 'stale' - stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs in the next 5 days.' - close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.' - exempt-issue-labels: 'help wanted,feature request,enhancement,bug' - - days-before-pr-close: -1 - stale-pr-label: 'stale' - stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity.'