[(*```STAR``My```Tech`````*****````*****```*****
é©*************©*************©``é````]***
[(*```STARMy```Tech*** ***é**©**````````*****``````````©``````````*****``````````©``é``]
Use this template to bootstrap the creation of a JavaScript action.:rocket:
This template includes tests, linting, a validation workflow, publishing, and versioning guidance.
If you are new, there's also a simpler introduction. See the Hello World JavaScript Action
Click the Use this Template and provide the new repo details for your action
Install the dependencies
npm installRun the tests ✔️
$ npm test
PASS ./index.test.js
✓ throws invalid number (3ms)
✓ wait 500 ms (504ms)
✓ test runs (95ms)
...The action.yml defines the inputs and output for your action.
Update the action.yml with your name, description, inputs and outputs for your action.
See the documentation
Most toolkit and CI/CD operations involve async operations so the action is run in an async function.
const core = require('@actions/core');
...
async function run() {
try {
...
}
catch (error) {
core.setFailed(error.message);
}
}
run()See the toolkit documentation for the various packages.
GitHub Actions will run the entry point from the action.yml. Packaging assembles the code into one file that can be checked in to Git, enabling fast and reliable execution and preventing the need to check in node_modules.
Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.
Run prepare
npm run prepareSince the packaged index.js is run from the dist folder.
git add distUsers shouldn't consume the action from master since that would be latest code and actions can break compatibility between major versions.
Checkin to the v1 release branch
git checkout -b v1
git commit -a -m "v1 release"git push origin v1Note: We recommend using the --license option for ncc, which will create a license file for all of the production node modules used in your project.
Your action is now published! 🧑💻:
Sitelerimizdeki uygulamalar ev ve işyerleri için özelleştirebilir, geliştirilebiliriz. Yorum, istek ve sorularınız için lütfen yazınız. NOT; Projelrimizi hazırlamamızda Lütfen katkıda bulunun.# Beğendiysen Reklam verebilirsiniz üçretsizdir. İletişim : ercetinguler@starteknloji.space e-posta gönderebilirisiniz.
<iframe src="https://starcomputer.com.tr" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://starteknoloji.github.io/ThemeBlue/" title="Planet" height="400" width="1000" style="border:10;"></iframe> <script src="https://www.paypal.com/sdk/js?client-id=BAAZLPCKnSb06zNs1aBikWVXyJHPiVZvA3ZLvqPo1rNpf92PSLL91IOPWDdhXBQNVW275Q8xspd4OB7Y-I&components=hosted-buttons&disable-funding=venmo¤cy=USD"> </script> <script> paypal.HostedButtons({ hostedButtonId: "X2N7ME57HB89S", }).render("#paypal-container-X2N7ME57HB89S") </script> <script src="https://www.paypal.com/sdk/js?client-id=BAASlR7ZOaZ3ZUlPcIpMBaMKS-8NYGnU0GDawmguI1KZAFbZszey9baVVAXKxR1cz4RWE6bnIcX-7Z_VLk&components=hosted-buttons&disable-funding=venmo¤cy=USD"> </script> <script> paypal.HostedButtons({ hostedButtonId: "BGWQVG5XXGACJ", }).render("#paypal-container-BGWQVG5XXGACJ") </script> <script src="https://www.paypal.com/sdk/js?client-id=BAAZLPCKnSb06zNs1aBikWVXyJHPiVZvA3ZLvqPo1rNpf92PSLL91IOPWDdhXBQNVW275Q8xspd4OB7Y-I&components=hosted-buttons&disable-funding=venmo¤cy=USD"> </script> <script> paypal.HostedButtons({ hostedButtonId: "ZHEH5QJBCN7A4", }).render("#paypal-container-ZHEH5QJBCN7A4") </script> <iframe src="https://mycomputer.digital" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://starteknoloji.github.io/Starnet/" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://yerlicins.com" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://github.com/sponsors/StarTeknoloji/card" title="Sponsor StarTeknoloji" height="200" width="1000" style="border: 10;"></iframe> <iframe src="https://github.com/sponsors/Codes-Exe/card" title="Sponsor Codes-Exe" height="200" width="1000" style="border: 10;"></iframe>email: ercetinguler@starteknoloji.spaceTel: +90 0288 318 3560Adrres: Devlet Mah. Kanal Cad:13 Türkiye/Kırklareli/VizeAuthor: Erçetin Güler
See the actions tab for runs of this action! 🚀
s.src = '//starteknoloji-space.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
<section id="contact" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div class="tech-card hologram glow-border rounded-lg p-8 relative overflow-hidden">
<div class="scan-line"></div>
<h3 class="cyber-font text-2xl font-bold text-cyan-400 mb-6 glow-text">MESAJ GÖNDERİN</h3>
<form class="space-y-6" id="contact-form">
<div class="relative">
<label class="block text-sm font-medium text-gray-300 mb-2">Ad Soyad</label>
<input type="text" name="name" required class="w-full px-4 py-3 bg-black/50 border border-cyan-500/30 rounded-lg text-white focus:border-cyan-400 focus:outline-none transition-colors focus:glow-border" placeholder="Adınızı girin">
</div>
<div class="relative">
<label class="block text-sm font-medium text-gray-300 mb-2">E-posta</label>
<input type="email" name="email" required class="w-full px-4 py-3 bg-black/50 border border-cyan-500/30 rounded-lg text-white focus:border-cyan-400 focus:outline-none transition-colors focus:glow-border" placeholder="E-posta adresinizi girin">
</div>
<div class="relative">
<label class="block text-sm font-medium text-gray-300 mb-2">Konu</label>
<input type="text" name="subject" required class="w-full px-4 py-3 bg-black/50 border border-cyan-500/30 rounded-lg text-white focus:border-cyan-400 focus:outline-none transition-colors focus:glow-border" placeholder="Mesaj konusu">
</div>
<div class="relative">
<label class="block text-sm font-medium text-gray-300 mb-2">Mesaj</label>
<textarea rows="5" name="message" required class="w-full px-4 py-3 bg-black/50 border border-cyan-500/30 rounded-lg text-white focus:border-cyan-400 focus:outline-none transition-colors resize-none focus:glow-border" placeholder="Mesajınızı yazın"></textarea>
</div>
<button type="submit" class="cyber-button w-full py-3 text-lg font-semibold text-cyan-400 rounded-lg group">
<span class="relative z-10">Mesaj Gönder</span>
</button>
</form>
</div>
</div>
</div>
</section>







