Skip to content

Commit

Permalink
Updating release branch with latest changes (#60)
Browse files Browse the repository at this point in the history
* Create defaultLabels.yml (#49)

* Create defaultLabels.yml

* Update defaultLabels.yml

* Update defaultLabels.yml (#50)

* use secureValue for secure env variables (#51)

* use secureValue for secure env variables

ContainerInstanceManagementModels.EnvironmentVariable has a property, secureValue, which should be used for secure environment variables.

* Update README.md

Clarify usage of secure-environment-variables. You should specify them as Secrets.

* Update issue templates

* Create auto-triage-issues

* Update action.yml

* Update README.md

* Create CODEOWNERS

* Rename bug-report---feature-request.md to bug-report-feature-request.md

* build ts (#59)

Co-authored-by: Kanika Pasrija <kanikapasrija@Kanikas-MacBook-Pro.local>

Co-authored-by: el-pato <dustin.briles@gmail.com>
Co-authored-by: Balaga Gayatri <balaga-gayatri@github.com>
Co-authored-by: Kanika Pasrija <kanikapasrija@Kanikas-MacBook-Pro.local>
  • Loading branch information
4 people committed Aug 24, 2021
1 parent 139a5a4 commit 28cafb8
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@kaverma @kanika1894 @BALAGA-GAYATRI @pulkitaggarwl
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report-feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Bug Report / Feature Request
about: Describe this issue template's purpose here.
title: ''
labels: need-to-triage
assignees: ''

---


21 changes: 21 additions & 0 deletions .github/workflows/auto-triage-issues
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Auto-Labelling Issues"
on:
issues:
types: [opened, edited]

jobs:
auto_label:
runs-on: ubuntu-latest
name: Auto-Labelling Issues
steps:
- name: Label Step
uses: larrylawl/Auto-Github-Issue-Labeller@v1.0
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
REPOSITORY: ${{github.repository}}
DELTA: "7"
CONFIDENCE: "2"
FEATURE: "enhancement"
BUG: "bug"
DOCS: "documentation"

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ You can automate your workflows to deploy to [Azure Container Instances](https:/

Get started today with a [free Azure account](https://azure.com/free/open-source)!

This repository contains [GitHub Action for Deploying to Azure Container Instances](/action.yml) to deploy to Azure Container Instances. It supports deploying your container image to an Azure Container Instance.
This repository contains [GitHub Action for Deploying to Azure Container Instances](/action.yml) to deploy to Azure Container Instances. It supports deploying your container image to an Azure Container Instance.

__Note__: Currently this action supports deploying to azure container instances only if the __ip-Address__ of the container group is __public__.

The definition of this GitHub Action is in [action.yml](/action.yml).

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ inputs:
description: 'Specify the fully qualified container image name. For example, "myregistry.azurecr.io/nginx:latest" or "python:3.7.2-alpine/"'
required: true
ip-address:
description: 'IP Address type of the Container Group. Accepted Values are { Private, Public }'
description: 'IP Address type of the Container Group. Accepted Values are { Private, Public }.Currently it only supports { Public }'
required: false
default: 'Public'
location:
Expand Down
2 changes: 1 addition & 1 deletion lib/taskparameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class TaskParameters {
let pairList = pair.split(/=(?:"(.+)"|(.+))/);
let obj = {
"name": pairList[0],
"value": pairList[1] || pairList[2]
"secureValue": pairList[1] || pairList[2]
};
this._environmentVariables.push(obj);
});
Expand Down

0 comments on commit 28cafb8

Please sign in to comment.