We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a question on using environment variables in side a job.
name: "my job" url: https://mysite.org?api_key=${env variable} filter: - some filter...
Is this possible today?
The text was updated successfully, but these errors were encountered:
Not directly, but you can probably use a shell job using e.g. curl to work around it for now:
curl
name: "my job" command: curl http://google.com/?q=$SOMETHING filter: - ...
Then run urlwatch using e.g.:
SOMETHING=asdf ./urlwatch
Sorry, something went wrong.
No branches or pull requests
I have a question on using environment variables in side a job.
Is this possible today?
The text was updated successfully, but these errors were encountered: