Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sator-imaging/copy-to-another-repository
GitHub Actions to copy selected file to another repository and create Pull Request (PR).
https://github.com/sator-imaging/copy-to-another-repository
actions continuous-delivery github github-actions
Last synced: 19 days ago
JSON representation
GitHub Actions to copy selected file to another repository and create Pull Request (PR).
- Host: GitHub
- URL: https://github.com/sator-imaging/copy-to-another-repository
- Owner: sator-imaging
- License: mit
- Created: 2022-04-29T11:03:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-07T15:07:17.000Z (over 2 years ago)
- Last Synced: 2024-03-15T04:06:42.722Z (10 months ago)
- Topics: actions, continuous-delivery, github, github-actions
- Homepage:
- Size: 90.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Actions: Copy to Another Repository
`Copy-to-Another-Repository` is reusable workflow to copy selected file to another repository and create Pull Request (PR) to merge.
## Usage
Create GitHub Actions like as follows.
See [action.yml](https://github.com/sator-imaging/Copy-to-Another-Repository/blob/main/action.yml) for further details.```yaml {% raw %}
name: GitHub-Actions-Nameon:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
push:
branches: [ main ]
branches-ignore:
tags:
tags-ignore:
paths:
- 'README.md' # limit trigger to the target-filepath.
# It's not elegant to set same value in two options but
# there is no way to retrieve this value in composite action.jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: sator-imaging/Copy-to-Another-Repository@v1
with:# required parameters
target-filepath: 'README.md' # file path to copy
output-branch: 'main or master' # branch name to create pull request
output-repo: 'Owner/AnotherRepository'
git-token: ${{ secrets.TOKEN_TO_ACCESS_OUTPUT_REPO }}
# optional parameters and default values
commit-message-prefix: '[actions] ' # followed by source repository and file name
output-directory: "${{ github.event.repository.name }}" # copy file into sub directory
pr-branch-prefix: "actions/${{ github.event.repository.name }}" # branch name prefix followed by date and time
pr-title: "GitHub Actions: ${{ github.event.repository.name }}" # followed by source repository and file name
pr-message: "${{ github.workflow }} on ${{ github.server_url }}/${{ github.repository }}" # followed by action repository
git-name: "github-actions[bot]" # your name can be set by ${{ github.actor }}
git-email: 'github-actions[bot]@users.noreply.github.com' # associated user icon is shown in commit page# {% endraw %}
```## Learning Resources
- [Metadata syntax for GitHub Actions](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions)
- [`runs` for composite actions](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-actions)
- [Contexts](https://docs.github.com/en/actions/learn-github-actions/contexts)
- [Environment variables](https://docs.github.com/en/actions/learn-github-actions/environment-variables)
- [Default environment variables](https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables)
- [Webhook events and payloads](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads)
- [Workflow commands for GitHub Actions](https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions)## Copyright
Copyright © 2022 Sator Imaging, all rights reserved.