Expose managing Redpanda feature flags through the cluster CR #45
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
--- | |
name: Manage JIRA Issue | |
on: | |
issues: | |
types: | |
- opened | |
- reopened | |
- edited | |
- closed | |
- deleted | |
- labeled | |
- unlabeled | |
jobs: | |
manage_jira_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_SM_READONLY_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SM_READONLY_SECRET_ACCESS_KEY }} | |
aws-region: us-west-2 | |
- name: get secrets from aws sm | |
uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
with: | |
secret-ids: | | |
,sdlc/prod/github/jira | |
parse-json-secrets: true | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: install dependencies | |
env: | |
SCRIPT_DIR: ${{ github.workspace }}/.github/workflows/scripts | |
run: pip install -r ${SCRIPT_DIR}/requirements.txt | |
- name: install pandoc | |
run: sudo apt-get update && sudo apt-get install -y pandoc | |
- name: Manage JIRA Issue | |
env: | |
SCRIPT_DIR: ${{ github.workspace }}/.github/workflows/scripts | |
JIRA_TOKEN: ${{ env.JIRA_TOKEN }} | |
JIRA_USER: ${{ env.JIRA_USER }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
ISSUE_TITLE: ${{ github.event.issue.title }} | |
ISSUE_BODY: ${{ github.event.issue.body }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE_LABELS: ${{ join(github.event.issue.labels.*.name) }} | |
ISSUE_STATE: ${{ github.event.issue.state }} | |
EVENT_NAME: ${{ github.event.action }} | |
run: python ${SCRIPT_DIR}/jira_helper.py ISSUE --verbose -p K8S |