Skip to content

Commit

Permalink
V2/fix ga tagging (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmadMokhtar authored Apr 21, 2024
1 parent bec3d28 commit 01b6951
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
DB_HOST={datbase_name}
DB_PORT=5432
DB_NAME={database_name}
DB_USER={database_user}
DB_PASS={database_password}
DB_SSLMODE=disable
LOG_LEVEL=debug
ADDR=0.0.0.0
PORT=8080
ENV=dev
5 changes: 2 additions & 3 deletions .github/workflows/semver-lable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@ on:

jobs:
semver_tag_from_pr:
# permissions required to find PR for last commit and push the new tag
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0" # we need full git-history to determine the last semVer tag
fetch-depth: "0"
ssh-key: ${{ secrets.semver_github_action }}
- name: bump semVer
uses: simontheleg/semver-tag-from-pr-action@v1
uses: simontheleg/semver-tag-from-pr-action@v1.4.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
repo_ssh_key: ${{ secrets.SEMVER_GITHUB_ACTION_PRIVATE }}

0 comments on commit 01b6951

Please sign in to comment.