https://github.com/kriasoft/create-dns-record
Create DNS Record Action for GitHub
https://github.com/kriasoft/create-dns-record
Last synced: 3 months ago
JSON representation
Create DNS Record Action for GitHub
- Host: GitHub
- URL: https://github.com/kriasoft/create-dns-record
- Owner: kriasoft
- License: mit
- Created: 2020-04-05T18:12:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-13T11:26:38.000Z (over 4 years ago)
- Last Synced: 2025-10-19T09:55:26.962Z (3 months ago)
- Language: JavaScript
- Homepage: https://github.com/marketplace/actions/create-dns-record
- Size: 5.86 KB
- Stars: 7
- Watchers: 3
- Forks: 30
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Create DNS Record Action for GitHub
Creates a new CloudFlare DNS record.
## Usage
```yaml
name: example
on:
pull_request:
type: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: kriasoft/create-dns-record@v1
with:
type: "CNAME"
name: "{PR}-review.example.com"
content: "example.com"
ttl: 1
proxied: true
token: ${{ secrets.CLOUDFLARE_TOKEN }}
zone: ${{ secrets.CLOUDFLARE_ZONE }}
```
## License
The scripts and documentation in this project are released under the [MIT License](LICENSE).