[Core feature] Support overriding task pod_template
via with_overrides
#6951
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
# Allow users to automatically tag themselves to issues | |
# | |
# Usage: | |
# - a github user (a member of the repo) needs to comment | |
# with "#self-assign" on an issue to be assigned to them. | |
#------------------------------------------------------------ | |
name: Self-assign | |
on: | |
issue_comment: | |
types: created | |
jobs: | |
one: | |
runs-on: ubuntu-latest | |
if: >- | |
(github.event.comment.body == '#take' || | |
github.event.comment.body == '#self-assign') | |
steps: | |
- run: | | |
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}" | |
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-d '{"assignees": ["${{ github.event.comment.user.login }}"]}' \ | |
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees | |
echo "Done 🔥 " |