-
-
Notifications
You must be signed in to change notification settings - Fork 878
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding CODEOWNERS, fixing first interaction for contributers and addi…
…ng unathorized code check in PR (#196) * Update pull-requests.yml * Create pull-request-target.yml * Create authorized-changes-detection.yml * Create CODEOWNERS
- Loading branch information
1 parent
adb4fda
commit 2c45be6
Showing
4 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Checking workflow files | ||
on: | ||
pull_request: | ||
paths: | ||
- '.github/**' | ||
|
||
jobs: | ||
Checking-for-unauthorized-file-changes: | ||
name: Checking for unauthorized file changes | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Unauthorized file modification in PR | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: PR target workflow | ||
on: | ||
pull_request_target: | ||
|
||
jobs: | ||
PR-Greeting: | ||
name: Greeting Message to user | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-message: "Congratulations on making your first PR! :confetti_ball: If you haven't already, check out our [Contributing Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/master/CONTRIBUTING.md) and [PR Reporting Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/master/PR-guidelines.md) to ensure that you are following our guidelines for contributing and creating PR." | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/.github/ @palisadoes | ||
CODEOWNERS @palisadoes |