Merge pull request #291 from topoteretes/COG-868
Create autoupdate.yaml
This commit is contained in:
commit
0913a5d79c
2 changed files with 51 additions and 0 deletions
35
.github/dependabot.yaml
vendored
Normal file
35
.github/dependabot.yaml
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
# Configuration: https://dependabot.com/docs/config-file/
|
||||||
|
# Docs: https://docs.github.com/en/github/administering-a-repository/keeping-your-dependencies-updated-automatically
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "pip"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
allow:
|
||||||
|
- dependency-type: "all"
|
||||||
|
commit-message:
|
||||||
|
prefix: ":arrow_up:"
|
||||||
|
open-pull-requests-limit: 50
|
||||||
|
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
allow:
|
||||||
|
- dependency-type: "all"
|
||||||
|
commit-message:
|
||||||
|
prefix: ":arrow_up:"
|
||||||
|
open-pull-requests-limit: 50
|
||||||
|
|
||||||
|
- package-ecosystem: "docker"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
allow:
|
||||||
|
- dependency-type: "all"
|
||||||
|
commit-message:
|
||||||
|
prefix: ":arrow_up:"
|
||||||
|
open-pull-requests-limit: 50
|
||||||
16
.github/workflows/community_greetings.yml
vendored
Normal file
16
.github/workflows/community_greetings.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
name: community | Greetings
|
||||||
|
|
||||||
|
on: [pull_request, issues]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
greeting:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/first-interaction@v1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
pr-message: 'Hello @${{ github.actor }}, thank you for submitting a PR! We will respond as soon as possible.'
|
||||||
|
issue-message: |
|
||||||
|
Hello @${{ github.actor }}, thank you for your interest in our work!
|
||||||
|
|
||||||
|
If this is a bug report, please provide screenshots and **minimum viable code to reproduce your issue**, otherwise we can not help you.
|
||||||
Loading…
Add table
Reference in a new issue