Skip to content

Commit 68fcb40

Browse files
authored
Merge pull request #1321 from gitlabhq/lock-down
Lock down PRs for repository migration over to GitLab
2 parents b0912a8 + f2a0e67 commit 68fcb40

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/lock.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 'Lockdown'
2+
3+
on:
4+
pull_request_target:
5+
types: opened
6+
schedule:
7+
- cron: '0 * * * *'
8+
9+
permissions:
10+
pull-requests: write
11+
12+
jobs:
13+
action:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: dessant/repo-lockdown@v2
17+
with:
18+
process-only: prs
19+
skip-closed-pr-comment: true
20+
exclude-pr-created-before: '2022-11-09T13:00:00Z'
21+
pr-comment: |
22+
Thank you very much for your contribution :heart:
23+
24+
However, we'd like to inform you that this repository is in the process of being moved to [GitLab](https://gitlab.com/gitlab-org/terraform-provider-gitlab).
25+
26+
Once the repository is fully migrated, we'd love to see your contribution [there](https://gitlab.com/gitlab-org/terraform-provider-gitlab/merge_requests) :tada:
27+

0 commit comments

Comments
 (0)