test: verify add_star sends correct param keys for each target type #543
Workflow file for this run
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: Empty checking | |
| # Note: | |
| # A convenient workflow for making status checks pass. | |
| # Your GitHub repository settings require status checks to pass, but other checks may not be triggered due to the change path. | |
| # In that case, the merge will be blocked even though the necessary checks are missing. | |
| # If other checks fail, merging will be blocked even if this workflow succeeds. | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Exit successfully | |
| run: exit 0 |