-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The documentation repo becomes independent :)
- Loading branch information
olivierapivideo
authored
Nov 21, 2023
1 parent
e58f582
commit 35ff3f1
Showing
1 changed file
with
27 additions
and
0 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,27 @@ | ||
name: Create documentation PR | ||
on: | ||
# Trigger the workflow on pull requests targeting the main branch | ||
pull_request: | ||
types: [assigned, unassigned, opened, reopened, synchronize, edited, labeled, unlabeled, edited, closed] | ||
branches: | ||
- main | ||
|
||
jobs: | ||
create_documentation_pr: | ||
if: github.event.action != 'closed' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out current repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Create the documentation pull request | ||
uses: apivideo/api.video-create-readme-file-pull-request-action@main | ||
with: | ||
source-file-path: "README.md" | ||
destination-repository: apivideo/api.video-documentation | ||
destination-path: sdks/api-clients | ||
destination-filename: apivideo-php-client.md | ||
pat: "${{ secrets.PAT }}" | ||
|