Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
name: 'Close Pull Requests'
2
 
3
on:
4
  pull_request_target:
5
    types: opened
6
  workflow_dispatch:
7
 
8
jobs:
9
  close:
10
    # Avoid forks to run this job
11
    if: github.repository_owner == 'moodle'
12
    name: Close Pull Requests
13
    runs-on: ubuntu-latest
14
    steps:
15
      - uses: dessant/repo-lockdown@v4
16
        with:
17
          process-only: prs
18
          close-pr: true
19
          skip-closed-pr-comment: true
20
          pr-comment: >
21
             **Please, don't open pull requests via GitHub.**
22
 
23
 
24
             This repository (moodle.git) at GitHub is just a mirror of the official Moodle repository.
25
 
26
 
27
             For how to contribute patches for Moodle see
28
             [CONTRIBUTING.md](https://github.com/moodle/moodle/blob/main/CONTRIBUTING.md).
29
 
30
 
31
             Closing this pull request.