SNOW-1820372: (from 947) when proxy is set in Connection, driver does send traffic through the proxy to S3, but not to Azure blob / GCS bucket (only Snowflake). Works with proxy envvar (GCP) #1816
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: Jira comment | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
comment-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Jira login | |
uses: atlassian/gajira-login@master | |
env: | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
- name: Extract issue from title | |
id: extract | |
env: | |
TITLE: "${{ github.event.issue.title }}" | |
run: | | |
jira=$(echo -n $TITLE | awk '{print $1}' | sed -e 's/://') | |
echo ::set-output name=jira::$jira | |
- name: Comment on issue | |
uses: atlassian/gajira-comment@master | |
if: startsWith(steps.extract.outputs.jira, 'SNOW-') && github.event.comment.user.login != 'codecov[bot]' | |
with: | |
issue: "${{ steps.extract.outputs.jira }}" | |
comment: "${{ github.event.comment.user.login }} commented:\n\n${{ github.event.comment.body }}\n\n${{ github.event.comment.html_url }}" |