mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-01-01 12:52:25 +08:00
Merge pull request #68 from Firefishy/fix-dependabot-message
Add details about keeping actions updated using Dependabot.
This commit is contained in:
commit
c4d43f536d
1 changed files with 22 additions and 0 deletions
22
README.md
22
README.md
|
@ -166,3 +166,25 @@ and then define the `creds.json` file as follows.
|
|||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Dependabot
|
||||
|
||||
[Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
|
||||
is a GitHub service that helps developers to automate dependency maintenance and
|
||||
keep dependencies updated to the latest versions. It has native support for
|
||||
[GitHub Actions](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem),
|
||||
which means you can use it in your GitHub repository to keep the DNSConrol Acion
|
||||
up-to-date.
|
||||
|
||||
To enable Dependabot in your GitHub repository, add a `.github/dependabot.yml`
|
||||
file with the following contents:
|
||||
|
||||
```yaml
|
||||
version: 2
|
||||
updates:
|
||||
# Maintain dependencies for GitHub Actions
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue