diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..4929966 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +patreon: libresign +github: libresign diff --git a/.github/config.yml b/.github/config.yml new file mode 100644 index 0000000..7971aba --- /dev/null +++ b/.github/config.yml @@ -0,0 +1,2 @@ +# Comment to be posted to on PRs from first time contributors in your repository +newPRWelcomeComment: "Thanks for opening your first pull request in this repository! :v:" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d9b3d35 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/dependabot-approve.yml b/.github/workflows/dependabot-approve.yml new file mode 100644 index 0000000..238b951 --- /dev/null +++ b/.github/workflows/dependabot-approve.yml @@ -0,0 +1,14 @@ + +name: Dependabot auto approve +on: pull_request_target + +jobs: + auto-aprove: + runs-on: ubuntu-latest + permissions: + pull-requests: write + if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' + steps: + - uses: hmarr/auto-approve-action@v3 + with: + review-message: "Auto approved automated PR"