refactor: remove unused master branch from CI workflow

This commit is contained in:
Prad Nukala 2024-09-27 23:05:50 -04:00
parent f56397df38
commit c2d7fcb868
2 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,6 @@ on:
push: push:
branches: branches:
- develop - develop
- master
permissions: permissions:
contents: write contents: write

View File

@ -14,15 +14,15 @@ jobs:
- name: Check out - name: Check out
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}" token: "${{ secrets.GH_PAT_TOKEN }}"
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: ${{ env.GO_VERSION }} go-version: "1.22"
check-latest: true check-latest: true
- name: Tests - name: Run tests
run: make test run: make test
- name: Create bump and changelog - name: Create bump and changelog