Skip to content

Commit

Permalink
Create github-actions-environments-inputs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubakimoto authored Jul 10, 2023
1 parent b0c1727 commit e527edb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/github-actions-environments-inputs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: GitHub Actions environment inputs

on:
workflow_dispatch:
inputs:
environment:
description: '環境名'
required: true
type: environment

jobs:
show-vars-on-environment:
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: show variables
run: echo ${{ vars.WHO_AM_I }}
- name: Log out with Azure AD B2C
run: az logout

0 comments on commit e527edb

Please sign in to comment.