Skip to content

andreilisa/python-custom-actions

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Action for DevOps Community Day(CI/CD)

This action do an api call to Weather API

Configuration:

inputs:
  open_weather_key:
    description: 'Open Weather API Key'
    required: true
  city_name:
    description: 'City Name'
    required: false
    default: 'Paris'
outputs: // console output
  weather:
    description: 'Whether'

Example of using this actions:

  weather:
    runs-on: ubuntu-22.04
    steps:
      - name: Weather Call
        uses: andreilisa/python-custom-actions@v1.0
        with:
          city_name: ${{ vars.CITY_NAME }}
          open_weather_key: ${{ secrets.OPEN_WEATHER_KEY }}

About

GithubAction to in python with dockerFile make weather api call.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors