You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
0 commit comments