mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-04 23:14:19 +01:00
Since actions can access the github token, lets use a
particular version of sha rather than using master.
Fixes: #437
Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
(cherry picked from commit 57b64f35e0)
22 lines
480 B
YAML
22 lines
480 B
YAML
name: Pull request WIP checks
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- edited
|
|
- labeled
|
|
- unlabeled
|
|
|
|
jobs:
|
|
pr_wip_check:
|
|
runs-on: ubuntu-latest
|
|
name: WIP Check
|
|
steps:
|
|
- name: WIP Check
|
|
uses: tim-actions/wip-check@1c2a1ca6c110026b3e2297bb2ef39e1747b5a755
|
|
with:
|
|
labels: '["do-not-merge", "wip", "rfc"]'
|
|
keywords: '["WIP", "wip", "RFC", "rfc", "dnm", "DNM", "do-not-merge"]'
|