Skip to content

using defaults

using defaults #14

Workflow file for this run

name: IRCTC Automation Booking
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
inputs:
USERNAME:
default: ${{ secrets.USERNAME }}

Check failure on line 10 in .github/workflows/irctc.yml

View workflow run for this annotation

GitHub Actions / IRCTC Automation Booking

Invalid workflow file

The workflow is not valid. .github/workflows/irctc.yml (Line: 10, Col: 18): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.USERNAME .github/workflows/irctc.yml (Line: 15, Col: 18): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.PASSWORD
required: true
type: string
description: "Your IRCTC Username"
PASSWORD:
default: ${{ secrets.PASSWORD }}
required: true
type: string
description: "Your IRCTC Password"
jobs:
IRCTC-Booking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- run: |
pip install -r irctc-captcha-solver/requirements.txt
echo ::add-mask::$PASSWORD
echo ::add-mask::$USERNAME
echo PASSWORD=$PASSWORD >> $GITHUB_ENV
echo USERNAME=$USERNAME >> $GITHUB_ENV
# python3 irctc-captcha-solver/app.py "" is used for models to load before starting tatkal tickets
- name: Install Node.js and npm
uses: actions/setup-node@v4
with:
node-version: '21.7.1'
- name: Running IRCTC Cypress Script
uses: cypress-io/github-action@v6
with:
browser: chrome
command: npx cypress run --record --key a15b31a6-b9ee-4678-b9ac-f45a190851fe --browser chrome --env USERNAME=${{ inputs.USERNAME }},PASSWORD=${{ inputs.PASSWORD }}