SignorMercurio opened a new pull request, #55: URL: https://github.com/apache/pulsar-test-infra/pull/55
### Motivation Because of security restrictions, public actions cannot be used directly in ASF GitHub Action workflows. The options are either whitelisting the action's repository + SHA or by creating a copy of the action or by forking the original repository. GitHub Actions don't support git submodules, so that is not an option. This commit creates a copy of the files which is suitable for including the action in apache/pulsar-test-infra repository. This action can be referenced with: ```yaml uses: apache/pulsar-test-infra/delete-workflow-runs@master ``` delete-workflow-runs action is needed by changes in apache/pulsar#16539. ### Modifications Commands used to create the copy in pulsar-test-infra: ```shell git clone --depth 1 https://github.com/Mattraks/delete-workflow-runs cd delete-workflow-runs git checkout a6457c4 rm -rf .git cd .. git add delete-workflow-runs ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org