diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fb3c7f..fe5f265 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,7 +10,7 @@ updates: directory: "/" schedule: interval: "daily" - target-branch: "develop" + target-branch: "main" versioning-strategy: increase commit-message: prefix: "chore" diff --git a/.github/workflows/conventional-pr.yml b/.github/workflows/conventional-pr.yml index 245bce6..dae74bc 100644 --- a/.github/workflows/conventional-pr.yml +++ b/.github/workflows/conventional-pr.yml @@ -5,7 +5,6 @@ on: pull_request: branches: - main - - develop types: - opened - edited diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 3f82afa..0d61459 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -4,7 +4,6 @@ on: push: branches: - "main" - - "develop" tags: - "v*" @@ -43,7 +42,6 @@ jobs: latest=auto prefix= suffix= - # refs/branches/develop -> (develop) # refs/branches/main -> (main) # refs/tags/v1.2.3 -> (1.2.3) # refs/tags/v1.2.3 -> (1.2) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 98c2b36..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,23 +0,0 @@ -# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "29 5 * * *" - -jobs: - stale: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - - steps: - - uses: actions/stale@v8 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: 30 - stale-issue-message: This issue hasn't seen any activity for more than 30 days. It will be automatically closed in another 7 days. I you feel this is not the right thing to do, you can comment on this issue to avoid closing it. - stale-pr-message: This pull request hasn't seen any activity for more than 30 days. It will be automatically closed in another 7 days. I you feel this is not the right thing to do, you can comment on this pull request to avoid closing it. - stale-issue-label: "stale" - stale-pr-label: "stale"