• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: 'Close issues and PRs'
2
3on:
4  issues:
5    types: opened
6  pull_request_target:
7    types: opened
8
9permissions:
10  issues: write
11  pull-requests: write
12
13jobs:
14  action:
15    runs-on: ubuntu-latest
16    steps:
17      - uses: dessant/repo-lockdown@0b093279a77b44bbc38e85089b5463dd06b4aea4
18        with:
19          issue-comment: >
20            Thank you for your contribution. The flashrom project does not handle
21            GitHub issues or pull requests, since this repository on GitHub is
22            just a mirror of our actual repository. Thus, we would like to
23            encourage you to have a look at on our [development guide](https://www.flashrom.org/dev_guide/development_guide.html)
24            and submit your patch to [review.coreboot.org](https://review.coreboot.org/q/project:flashrom).
25            Issues are handled over our [ticket system](https://ticket.coreboot.org/projects/flashrom).
26            If you have questions, feel free to reach out to us. There are
27            multiple ways to [contact us](https://www.flashrom.org/contact.html).
28          pr-comment: >
29            Thank you for your contribution. The flashrom project does not handle
30            GitHub issues or pull requests, since this repository on GitHub is
31            just a mirror of our actual repository. Thus, we would like to
32            encourage you to have a look at on our [development guide](https://www.flashrom.org/dev_guide/development_guide.html)
33            and submit your patch to [review.coreboot.org](https://review.coreboot.org/q/project:flashrom).
34            Issues are handled over our [ticket system](https://ticket.coreboot.org/projects/flashrom).
35            If you have questions, feel free to reach out to us. There are
36            multiple ways to [contact us](https://www.flashrom.org/contact.html).
37