this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove github actions workflows

-89
-42
.github/workflows/publish.yml
··· 1 - name: brew pr-pull 2 - 3 - on: 4 - pull_request_target: 5 - types: 6 - - labeled 7 - 8 - jobs: 9 - pr-pull: 10 - if: contains(github.event.pull_request.labels.*.name, 'pr-pull') 11 - runs-on: ubuntu-22.04 12 - permissions: 13 - actions: read 14 - checks: read 15 - contents: write 16 - issues: read 17 - pull-requests: write 18 - steps: 19 - - name: Set up Homebrew 20 - uses: Homebrew/actions/setup-homebrew@main 21 - with: 22 - token: ${{ secrets.GITHUB_TOKEN }} 23 - 24 - - name: Set up git 25 - uses: Homebrew/actions/git-user-config@main 26 - 27 - - name: Pull bottles 28 - env: 29 - HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} 30 - PULL_REQUEST: ${{ github.event.pull_request.number }} 31 - run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST" 32 - 33 - - name: Push commits 34 - uses: Homebrew/actions/git-try-push@main 35 - with: 36 - branch: main 37 - 38 - - name: Delete branch 39 - if: github.event.pull_request.head.repo.fork == false 40 - env: 41 - BRANCH: ${{ github.event.pull_request.head.ref }} 42 - run: git push --delete origin "$BRANCH"
-47
.github/workflows/tests.yml
··· 1 - name: brew test-bot 2 - 3 - on: 4 - push: 5 - branches: 6 - - main 7 - pull_request: 8 - 9 - jobs: 10 - test-bot: 11 - strategy: 12 - matrix: 13 - os: [ macos-13, macos-14, macos-15, macos-26 ] 14 - runs-on: ${{ matrix.os }} 15 - permissions: 16 - actions: read 17 - checks: read 18 - contents: read 19 - pull-requests: read 20 - steps: 21 - - name: Set up Homebrew 22 - id: set-up-homebrew 23 - uses: Homebrew/actions/setup-homebrew@main 24 - with: 25 - token: ${{ secrets.GITHUB_TOKEN }} 26 - 27 - - name: Cache Homebrew Bundler RubyGems 28 - uses: actions/cache@v4 29 - with: 30 - path: ${{ steps.set-up-homebrew.outputs.gems-path }} 31 - key: ${{ matrix.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} 32 - restore-keys: ${{ matrix.os }}-rubygems- 33 - 34 - - run: brew test-bot --only-cleanup-before 35 - 36 - - run: brew test-bot --only-setup 37 - 38 - - run: brew test-bot --only-tap-syntax 39 - - run: brew test-bot --only-formulae 40 - if: github.event_name == 'pull_request' 41 - 42 - - name: Upload bottles as artifact 43 - if: always() && github.event_name == 'pull_request' 44 - uses: actions/upload-artifact@v4 45 - with: 46 - name: bottles_${{ matrix.os }} 47 - path: '*.bottle.*'