Skip to content

Commit 991a13e

Browse files
committed
Upate Readme
1 parent 093ff07 commit 991a13e

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

README.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
1-
# GitHub Action Workflows
2-
1+
# GitHub Action Reusable Workflows
32

43
[![Tag](https://img.shields.io/github/tag/devilbox/github-actions.svg)](https://github.com/devilbox/github-actions/releases)
54
[![License](https://img.shields.io/badge/license-MIT-%233DA639.svg)](https://opensource.org/licenses/MIT)
65

7-
Required re-usable GitHub Action Workflows for Devilbox. See [.github/workflows](.github/workflows).
6+
Required GitHub Action Reusable Workflows for Devilbox. See [.github/workflows](.github/workflows).
7+
8+
9+
## :computer: Usage
10+
11+
See how the reusable workflows are used [from this repository](https://github.com/devilbox/github-actions/network/dependents).
12+
13+
14+
## :exclamation: Keep up-to-date with GitHub Dependabot
15+
16+
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot) has [native GitHub Actions support](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem), to enable it on your GitHub repo all you need to do is add the `.github/dependabot.yml` file:
17+
18+
```yml
19+
version: 2
20+
updates:
21+
# Maintain dependencies for GitHub Actions
22+
- package-ecosystem: "github-actions"
23+
directory: "/"
24+
schedule:
25+
interval: "daily"
26+
```
27+
28+
Then Dependabot will PR you version updates as soon as this repository gets updated.
829
930
10-
## License
31+
## :page_facing_up: License
1132
1233
**[MIT License](LICENSE)**
1334

0 commit comments

Comments
 (0)