Add feature to read from Confluence and Jira and suggest test cases #15
Workflow file for this run
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: AI workflow | |
on: [pull_request_target] | |
env: | |
API_KEY: ${{ secrets.API_KEY }} | |
jobs: | |
# This workflow contains a single job called "greet" | |
ai: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
- id: 'auth' | |
uses: 'google-github-actions/auth@v2' | |
with: | |
credentials_json: '${{ secrets.GCP_CREDENTIALS }}' | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v2' | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |