Skip to content

Commit

Permalink
Add Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjswan committed Dec 12, 2023
1 parent 254fdd8 commit 1f9547c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
day: monday
time: "12:00"
labels:
- dependencies
commit-message:
prefix: "ESP"
open-pull-requests-limit: 10
25 changes: 25 additions & 0 deletions .github/workflows/workflow_size_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Workflow / Size and Stability labels

on:
pull_request_target:
types: [opened, synchronize]
# push:
# branches: [master]

jobs:
add-labels:
name: Add labels

runs-on: ubuntu-latest

permissions:
contents: read
pull-requests: write

steps:
- name: Add Size and Stability labels
uses: victorx64/pr-label@v0
with:
# Optional pattern used to limit paths.
# See https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec
git-pathspec: "':!Build/**' ':!**/TuningParameters/**' ':!libbluray'"

0 comments on commit 1f9547c

Please sign in to comment.