docs: Fixing docker README about ssh and scp being overwritten (#118) #227
This file contains hidden or 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
name: Release Drafter | |
on: | |
push: | |
branches: | |
- main | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
permissions: | |
contents: read | |
jobs: | |
update_release_draft: | |
name: Update the release notes | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
outputs: | |
latest_version: ${{ steps.draft_release.outputs.tag_name }} | |
release_notes: ${{ steps.draft_release.outputs.body }} | |
steps: | |
- name: Draft Release Notes | |
id: draft_release | |
uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 | |
with: | |
publish: ${{ steps.check-version.outputs.tag != '' }} | |
tag: ${{ steps.check-version.outputs.tag }} | |
disable-autolabeler: false | |
commitish: main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pr-checker: | |
name: Ensure Proper Pull Request Labels | |
if: github.event_name == 'pull_request_target' | |
needs: update_release_draft | |
permissions: | |
pull-requests: read | |
checks: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker://agilepathway/pull-request-label-checker:v1.6.65 | |
with: | |
any_of: feature,fix,style,changed,refactor,perf,test,build,ci,chore,revert,deprecated,removed,security,documentation,dependencies | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |