Skip to content

env variables

env variables #17

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- '*'
jobs:
initial-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run script file
run: |
env
echo "${{toJSON(github.event)}}"
shell: bash
pre-feature-pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install requests
- name: Run Python script
run: python3 pipeline/pipeline.py --step pre_feature_branch
env:
GH_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
GH_COMMIT_HASH: ${{ github.event.head_commit.id }}
GH_COMMIT_LINK_URL: ${{ github.event.head_commit.url }}
GH_FULL_NAME: ${{ github.repository.full_name }}
GH_PROJECT_URL: ${{ github.repository.html_url }}
TRELLO_BOARD_ID: ${{ secrets.TRELLO_BOARD_ID }}
TRELLO_API_KEY: ${{ secrets.TRELLO_API_KEY }}
TRELLO_API_TOKEN: ${{ secrets.TRELLO_API_TOKEN }}