Skip to content

Tags: github/gh-actions-importer

Tags

v1.3.6

Toggle v1.3.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for custom Docker registries (#275)

* Add support for custom Docker registries

This allows a user to set the `CONTAINER_REGISTRY` environment variable
which can be used in place of the default of ghcr.io if a customer would
like to mirror our image so they can self host behind any proxies or other
custom network stack.

* Add details to README about a custom docker registry

v1.3.5

Toggle v1.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #235 from github/add-bb-commands

Add Bitbucket commands

v1.3.4

Toggle v1.3.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add --include-from option to GitHub forecast (#220)

v1.3.3

Toggle v1.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #209 from github/no-host-network

Add option to disable the use of host network

v1.3.2

Toggle v1.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #141 from github/bamboo-doc

AWS Code Deploy doc update

v1.3.1

Toggle v1.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #138 from github/edit

Bamboo docs last update

v1.3.0

Toggle v1.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Adds Bamboo commands (#102)

* Add Bamboo audit command

* Add Bamboo dry-run commands

* Add Bamboo migrate commands

* Wire things up

* lint

* Fix typo

v1.2.3

Toggle v1.2.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #111 from mario-campos/main

Use host's network stack, not container's.

v1.2.2

Toggle v1.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Build Apple arm64 binary (#106)

* Update ci.yml

* add rid

v1.2.1

Toggle v1.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update configure command to support configuring feature flags (#96)

* Update configure command to support configuring feature flags

This uses the changes from github/valet#5879 to fetch available flags
via the list-features --json flag. It parses out the possible env vars
and walks the customer through setting any feature flags they desire.

If there are any issues getting the available feature flags JSON, we
don't ask the customer to configure feature flags, as it won't cause any
breaking issues and we don't want to break the configure command.

* Move feature configuration to its own flag

* Add unit tests

* Undo changes to ConfigurationServiceTests

* Code review fixes