feat: timeinterval (#285) #162
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Create Release | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| semantic-release: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release-version: ${{ steps.semantic.outputs.release-version }} | |
| new-release-published: ${{ steps.semantic.outputs.new-release-published }} | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
| - uses: codfish/semantic-release-action@b621d34fabe0940f031e89b6ebfea28322892a10 # v3.5.0 | |
| id: semantic | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| bump-clients: | |
| runs-on: ubuntu-latest | |
| needs: [semantic-release] | |
| if: needs.semantic-release.outputs.new-release-published == 'true' | |
| strategy: | |
| matrix: | |
| repos: ["duty"] | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
| with: | |
| repository: flanksource/${{ matrix.repos }} | |
| token: ${{ secrets.FLANKBOT }} | |
| - name: Setup Go | |
| uses: buildjet/setup-go@555ce355a95ff01018ffcf8fbbd9c44654db8374 # v5.0.2 | |
| with: | |
| go-version: v1.25.x | |
| - uses: buildjet/cache@2bbce90d3097805dadebea12a89c47be69eb1b64 # v4.0.0 | |
| with: | |
| path: | | |
| ~/go/pkg/mod | |
| ~/.cache/go-build | |
| .bin | |
| key: cache-${{ hashFiles('**/go.sum') }}-${{ hashFiles('.bin/*') }} | |
| restore-keys: | | |
| cache- | |
| - name: Create commits | |
| run: | | |
| # Sleep to let index refresh | |
| sleep 60 | |
| go get github.com/flanksource/commons@v${{ needs.semantic-release.outputs.release-version }} | |
| go mod tidy | |
| if [ -d "hack/generate-schemas" ]; then | |
| cd hack/generate-schemas && go mod tidy | |
| fi | |
| - name: Create Pull Request | |
| id: cpr | |
| uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6.0.5 | |
| with: | |
| branch: "bump-duty-auto-pr" | |
| commit-message: "chore: bump duty to v${{ needs.semantic-release.outputs.release-version }}" | |
| title: "chore: bump duty to v${{ needs.semantic-release.outputs.release-version }}" | |
| token: ${{ secrets.FLANKBOT }} | |
| labels: dependencies | |
| - name: Enable Pull Request Automerge | |
| if: steps.cpr.outputs.pull-request-operation == 'created' | |
| uses: peter-evans/enable-pull-request-automerge@a660677d5469627102a1c1e11409dd063606628d # v3.0.0 | |
| with: | |
| token: ${{ secrets.FLANKBOT }} | |
| pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} | |
| merge-method: squash | |
| repository: flanksource/${{ matrix.repos }} |