diff --git a/.github/workflows/validate-pr-metadata.yml b/.github/workflows/validate-pr-metadata.yml new file mode 100644 index 0000000..dcfe581 --- /dev/null +++ b/.github/workflows/validate-pr-metadata.yml @@ -0,0 +1,18 @@ +name: Check Code of Conduct +on: + pull_request_target: + branches: "code-of-conduct-checker" + types: + - opened + - edited + - reopened + +jobs: + check_code_of_conduct: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: CodeYourFuture/actions/validate-pr-metadata@set-up-dummy + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + use_dummy_code_of_conduct_validator: true diff --git a/README.md b/README.md index 3a15496..2c00ba6 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,5 @@ You can see the deployed site [here](https://codeyourfuture.github.io/github_iss - `index.html` - The HTML file used to generate the site. - `styles.css` - CSS used to style the site. - `.gitignore` - A list of files which should not be tracked by Git. + +This is an example change to a README file.