Skip to content

Commit

Permalink
3.2.0 (#142)
Browse files Browse the repository at this point in the history
* Additional Integration tests (#123)

* Update integration-beta.yml

* git fetch again

* git fetch

* Tests

* Failing Build (#124)

* Bump @types/node from 13.1.6 to 13.1.7 (#126)

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 13.1.6 to 13.1.7.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @types/jest from 24.0.25 to 24.9.0 (#127)

Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 24.0.25 to 24.9.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* js > ts

* License Upgrades

* Bump typescript from 3.7.4 to 3.7.5 (#132)

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.7.4 to 3.7.5.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v3.7.4...v3.7.5)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Issue-133] Customizable Commit Messages (#134)

* Customizable Commit Messages

* Removes lodash

* Update package.json

* README

* Changes

* Check for null

* Adds a dash

* Support action/checkout@v2 (#136)

* Create CODEOWNERS

* Update integration.yml

* Adds automatic issue labels (#139)

* [Issue-130] SSH Support (#140)

* First pass at deploy key support

* Needed

* More ssh

* Adds keyscan

* Another look at this

* More things....

* w

* Path to home

* w

* k

* Update git.ts

* ff

* dd

* test

* File Sync maybe

* Adds SSH Examples

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* x

* c

* Update README.md

* Integration tests

* Update integration-beta.yml

* More Changes

* Update README.md

* README Reorg

* Update README.md

* Update README.md

* Update README.md

* Adds correct metadata

* Update action.yml

* Formatting

* Update build.yml

* Adds CodeCov report

* Update README.md

* Test Coverage Improvements (#141)

* Test Coverage Improvements

* Update env.js

* More Test Coverage / Imps

* Update README.md

* Formatting

* Update git.js

* Test Names...

* Update action.yml

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
  • Loading branch information
JamesIves and dependabot-preview[bot] authored Jan 19, 2020
1 parent 2a824df commit 204e85b
Show file tree
Hide file tree
Showing 30 changed files with 726 additions and 206 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 @@
* @JamesIves
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
name: Bug Report
about: Create a bug report to help us improve the action.
labels:
- bug 🐝

---

Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
name: Feature Request
about: If you'd like to make a suggestion please fill out the form below.
labels:
- feature request 🏭

---

Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/SUPPORT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
name: Support
about: If you're having problems setting up the action you can make a request for support here.
labels:
- support 📞

---

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ jobs:
run: |
npm install
npm run-script test
- name: Uploade CodeCov Report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} #required
67 changes: 63 additions & 4 deletions .github/workflows/integration-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3-test
Expand All @@ -54,6 +56,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Install rsync
run: |
Expand All @@ -68,13 +72,67 @@ jobs:
BASE_BRANCH: dev
TARGET_FOLDER: montezuma2

# Deploys using an SSH key
integration-ssh:
needs: integration-container
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Install SSH Client
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3-test
with:
SSH: true
BRANCH: gh-pages-beta
FOLDER: integration
BASE_BRANCH: dev
TARGET_FOLDER: montezuma3

# Deploys using a custom env.
integration-env:
needs: integration-ssh
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: '10.x'

- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Install SSH Client
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3-test
with:
SSH: true
BRANCH: gh-pages-beta
FOLDER: integration
BASE_BRANCH: dev
TARGET_FOLDER: montezuma4

# Deploys using the CLEAN option.
integration-clean:
needs: [integration-checkout-v1, integration-checkout-v2, integration-container]
needs: [integration-checkout-v1, integration-checkout-v2, integration-container, integration-ssh, integration-env]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3-test
Expand All @@ -87,11 +145,12 @@ jobs:

# Deploys to a branch that doesn't exist.
integration-branch-creation:
needs: [integration-checkout-v1, integration-checkout-v2]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3-test
Expand Down
67 changes: 62 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Install rsync
run: |
Expand All @@ -67,13 +69,67 @@ jobs:
BASE_BRANCH: dev
TARGET_FOLDER: montezuma2

# Deploys using an SSH key.
integration-ssh:
needs: integration-container
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Install SSH Client
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
SSH: true
BRANCH: gh-pages-beta
FOLDER: integration
BASE_BRANCH: dev
TARGET_FOLDER: montezuma3

# Deploys using a custom env.
integration-env:
needs: integration-ssh
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: '10.x'

- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Install SSH Client
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
SSH: true
BRANCH: gh-pages-beta
FOLDER: integration
BASE_BRANCH: dev
TARGET_FOLDER: montezuma4

# Deploys using the CLEAN option.
integration-clean:
needs: [integration-checkout-v1, integration-checkout-v2, integration-container]
needs: [integration-checkout-v1, integration-checkout-v2, integration-container, integration-ssh, integration-env]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
Expand All @@ -86,11 +142,12 @@ jobs:

# Deploys to a branch that doesn't exist.
integration-branch-creation:
needs: [integration-checkout-v1, integration-checkout-v2]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
Expand All @@ -105,4 +162,4 @@ jobs:
uses: dawidd6/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branches: integration-test-delete-prod
branches: integration-test-delete-prod
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,14 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
node_modules

## Registry
package-lock.json
yarn-error.log

## SSH
.ssh
*.pub

## CodeCov
coverage
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 James Ives
Copyright (c) 2020 James Ives

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 204e85b

Please sign in to comment.