Feat: user import action: imported dynamic data replaces pre-existing rather than merging #1096
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
# Automatically apply labels to PR based on filepaths of modified files | |
name: Github PR Label Paths | |
on: | |
pull_request: | |
# https://frontside.com/blog/2020-05-26-github-actions-pull_request/ | |
types: | |
- opened | |
- synchronize | |
jobs: | |
label: | |
if: ${{ !contains(github.event.pull_request.labels.*.name , 'no-autolabel')}} | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repo to access local templates (if updated) | |
- name: checkout | |
uses: actions/checkout@main | |
# Assign labels based on files modified | |
# https://github.com/actions/labeler | |
- name: Assign PR path Labels | |
uses: actions/labeler@v5 | |
with: | |
configuration-path: .github/pr-labeler.config.yml | |
sync-labels: false |