diff --git a/.env b/.env index e69de29..9f53848 100644 --- a/.env +++ b/.env @@ -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 \ No newline at end of file diff --git a/.github/workflows/semver-lable.yml b/.github/workflows/semver-lable.yml index a50ca97..fe381e8 100644 --- a/.github/workflows/semver-lable.yml +++ b/.github/workflows/semver-lable.yml @@ -7,7 +7,6 @@ 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 @@ -15,10 +14,10 @@ jobs: 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 }} \ No newline at end of file