fix(sql): Correct GetLatestForcast logic #44
Workflow file for this run
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: Bump Tag | |
| on: | |
| pull_request: | |
| types: ["closed"] | |
| branches: ["main"] | |
| jobs: | |
| # Define an autotagger job that creates tags on changes to master | |
| bump-tag: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.merged == true | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| ref: ${{ github.event.pull_request.merge_commit_sha }} | |
| fetch-depth: 0 | |
| token: ${{ secrets.OCF_BOT_PAT_TOKEN }} | |
| # Bump tag according to conventional commit rules | |
| # See https://www.conventionalcommits.org/en/v1.0.0 | |
| - name: Bump version and push tag | |
| uses: anothrNick/github-tag-action@a2c70ae13a881faf2b4953baaa9e49731997ab36 # v1.67.0 | |
| id: tag | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.OCF_BOT_PAT_TOKEN }} | |
| RELEASE_BRANCHES: main | |
| WITH_V: true | |
| GIT_API_TAGGING: false | |
| MAJOR_STRING_TOKEN: "BREAKING CHANGE" | |
| MINOR_STRING_TOKEN: "feat(" | |
| PATCH_STRING_TOKEN: "fix(" | |
| DEFAULT_BUMP: none |