summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-04-23 13:00:34 -0700
committergVisor bot <gvisor-bot@google.com>2020-04-23 13:02:17 -0700
commit2e8c35b506654172243ea46918d27c897fca568c (patch)
treec430d08810dd5c90b9dee7d368bb11be0f676613 /.github/workflows
parentded5c963ae5c2a5d37508f8d122031a2cd60d642 (diff)
Add basic GitHub labeler workflow.
This is the first automated GitHub actions workflow, and it simply applies labels to pull request in a best-effort fashion. PiperOrigin-RevId: 308112191
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/labeler.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
new file mode 100644
index 000000000..b5fd10352
--- /dev/null
+++ b/.github/workflows/labeler.yml
@@ -0,0 +1,11 @@
+name: "Labeler"
+on:
+- pull_request
+
+jobs:
+ label:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v2
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"