Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Feb 7, 2024
1 parent 7ada92a commit e42da31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/cran-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ body:
git commit -m "[skip vbump] <Your commit message>"
git push origin release-candidate-vX.Y.Z`
```
#### Test the release
- [ ] Execute the manual tests on Shiny apps that are deployed on various hosting providers (Posit connect and shinyapps.io) - track the results in GitHub issue (Applicable only for frameworks that use Shiny).
- [ ] Monitor integration tests, if integration fails, create priority issues on the board.
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/propagate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
paths:
- .github/ISSUE_TEMPLATE/release.yml
# TODO also for cran-release.yml?
- .github/ISSUE_TEMPLATE/cran-release.yml
workflow_dispatch:

jobs:
Expand All @@ -23,9 +24,11 @@ jobs:
repos:
- name: junit-xml-diff
target-branch: main
files-to-propagate: '.github/ISSUE_TEMPLATE/release.yml .github/ISSUE_TEMPLATE/cran-release.yml'
reviewers: |-
walkowif
# TODO add remaining repositories
# TODO will there be any case in which we'd like some team as a reviewer?
# - name: <name>
# target-branch: main
# reviewers: |-
Expand Down Expand Up @@ -63,13 +66,13 @@ jobs:
# Copy release template from central repo.
mkdir -p .github/ISSUE_TEMPLATE
# TODO also cran-release.yml?
cp ../.github/ISSUE_TEMPLATE/release.yml .github/ISSUE_TEMPLATE
cp -a ../.github/ISSUE_TEMPLATE/* .github/ISSUE_TEMPLATE
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Propagate release template from ${{ github.repository }}
file_pattern: '.github/ISSUE_TEMPLATE/*'
file_pattern: ${{ matrix.repos.name.files-to-propagate }}
repository: extension-repo
commit_user_name: github-actions
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com
Expand Down

0 comments on commit e42da31

Please sign in to comment.