Skip to content

Commit

Permalink
docs(markdown): include and update examples (#9)
Browse files Browse the repository at this point in the history
* docs(markdown): include and update examples

* chore(meta): update code owners

Co-authored-by: matfax <[email protected]>
  • Loading branch information
github-actions[bot] and matfax authored Sep 14, 2020
1 parent 9faefd9 commit f20280d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.github/workflows [email protected]
.gitignore [email protected]
README.md [email protected]
action.yml [email protected]
entrypoint.sh [email protected]
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ name: codeowners

on:
pull_request_target:
branches:
branches:
- master
types:
types:
- ready_for_review
- review_request_removed
- reopened
Expand All @@ -60,8 +60,13 @@ jobs:
- name: checkout code
uses: actions/[email protected]
with:
# this only makes sure that forks are built as well
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}
# the fetch depth 0 (=all) is important
fetch-depth: 0
# the token is necessary for checks to rerun after auto commit
token: ${{ secrets.PAT }}
- name: update code owners
uses: gofunky/update-codeowners@master
with:
Expand All @@ -71,13 +76,11 @@ jobs:
uses: stefanzweifel/[email protected]
with:
commit_message: 'chore(meta): update code owners'
branch: ${{ github.head_ref }}
file_pattern: '.github/CODEOWNERS'
file_pattern: .github/CODEOWNERS
- uses: christianvuerings/[email protected]
if: ${{ steps.committed.outputs.changes_detected == 'true' }}
with:
labels: |
owned
labels: owned
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit f20280d

Please sign in to comment.