Skip to content

Commit ddd8fec

Browse files
authored
Delete operator branch (#297)
1 parent 29c83b3 commit ddd8fec

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Delete Operator Branch
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
description: "Operator Branch to delete"
8+
default: "update-nginx-ingress-operator-to-v2.2.1"
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
branch-delete:
15+
runs-on: ubuntu-22.04
16+
steps:
17+
- name: Delete branch
18+
uses: dawidd6/action-delete-branch@v3
19+
with:
20+
github_token: ${{ secrets.NGINX_PAT }}
21+
branches: ${{ inputs.branch }}
22+
repository: certified-operators
23+
owner: nginx-bot

0 commit comments

Comments
 (0)